-
-
Notifications
You must be signed in to change notification settings - Fork 631
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
CI Fixes #1581
CI Fixes #1581
Conversation
.github/workflows/main.yml
Outdated
|
||
jobs: | ||
build-dummy-app-webpack-test-bundles: | ||
strategy: | ||
matrix: | ||
ruby: [2.7, 3.2] | ||
node: [16, 18] | ||
node: [14, 16, 18] |
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.
Is there any particular reason for bringing back Node 14?
Before we decided to drop support for Node 14. (Though it seems I missed it in some other places)
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.
.github/workflows/main.yml
Outdated
ruby: [2.7] | ||
node: [14] | ||
ruby: [2.7, 3.2] | ||
node: [14, 16, 18] |
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.
newer node should be added
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
node: [16, 18] | ||
node: [14, 16, 18] |
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.
newer node
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
ruby: [2.7, 3.2] | ||
node: [16, 18] | ||
node: [14, 16, 18] |
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.
same
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.
I agree with this decision of testing with the oldest (that we care about) and the newest Node version.
This PR upgrades Puma to v6 to make it compatible with Rack v3.
This PR also adds new workflows so that all workflows required by our repository settings actually run.
This change is