-
Notifications
You must be signed in to change notification settings - Fork 993
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
use the values from matrix.json in JS tests #9880
Conversation
58654d1
to
e7d0e17
Compare
matrix: | ||
node-version: | ||
- 14 | ||
matrix: ${{ fromJson(needs.setup_matrix.outputs.matrix) }} |
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 wonder if we can somehow be smart and only test on the first Ruby version. Running the JS tests with all Ruby versions probably doesn't make sense.
matrix: ${{ fromJson(needs.setup_matrix.outputs.matrix) }} | |
matrix: | |
ruby: | |
- ${{ fromJson(needs.setup_matrix.outputs.matrix).ruby[0] }} | |
node: ${{ fromJson(needs.setup_matrix.outputs.matrix).node }} |
But perhaps with webpack 5 the webpack config no longer executes Ruby to determine plugins (not sure, couldn't see it immediately) and it no longer needs Ruby.
Co-authored-by: Ewoud Kohl van Wijngaarden <[email protected]>
3de15eb
to
e64dcf1
Compare
No description provided.