-
-
Notifications
You must be signed in to change notification settings - Fork 638
WIP - Fix Pro Rubocop and other CI - will split up #2034
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
c6d2bd9
fix all pro rubocop errors
Judahmeek 8723893
give each job a specific name
Judahmeek e47b626
fix pro rubocop linting
Judahmeek d8205a6
update job references
Judahmeek 1cb3a3a
try using arrays in workflow expression for matrix
Judahmeek b34c1de
try a json conversion
Judahmeek 239048a
try processing the conditional logic in another job
Judahmeek 5ad8d84
fix step output
Judahmeek 1155e30
CI fixes
Judahmeek 961d778
re-enable build_test_command since generators configure TestHelper
Judahmeek 209d3e2
make sure generate_packs runs
Judahmeek 25c43da
add yarn prefix
Judahmeek eb3f4be
add yarn prefix to publish, not link
Judahmeek bcf3156
reenable auto_load_bundle for generator
Judahmeek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistency: Translate matrix step computes node-version but it's ignored on line 95.
The "Translate matrix for Ruby and Node versions" step (lines 74–83) outputs both
ruby-versionandnode-versionbased on the dependency-level. Ruby version is correctly consumed at line 90 (ruby-version: ${{ steps.translate-matrix.outputs.ruby-version }}), but Node setup at line 95 hardcodesnode-version: 20instead of using the translated output.This is problematic because:
dependency-level == 'latest', the step setsnode-version=22(line 79), but line 95 forces Node 20dependency-level == 'minimum', the step setsnode-version=20(line 82), which accidentally matches the hardcoded valueApply this diff to use the translated node-version:
- name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: ${{ steps.translate-matrix.outputs.node-version }} # TODO: Re-enable yarn caching once Node.js V8 cache crash is fixed # Tracking: https://github.com/actions/setup-node/issues/1028 # cache: yarn # cache-dependency-path: '**/yarn.lock'Also applies to: 95-95
🤖 Prompt for AI Agents