-
-
Notifications
You must be signed in to change notification settings - Fork 208
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: fix typo in lint matrix setup #528
Conversation
`env.node-version` was undefined (`matrix.node-version` was defined, but never used), therefore the linting used to run in Node.js 14
Oh, it seems the same typo has also made its way to the following:
Is this coming from some template? Or should I open a new PR in each of those? |
.github/workflows/nodejs.yml
Outdated
@@ -20,7 +20,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
os: [ubuntu-latest] | |||
node-version: [12.x] | |||
node-version: [14.x] |
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.
Don't change it, we use 12
, i.e. minimum LTS for linting
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.
OK, the intent wasn't clear there - it was running in 14 up till now, though. Updated: 6dda685
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.
Thanks
Codecov Report
@@ Coverage Diff @@
## master #528 +/- ##
=======================================
Coverage 97.04% 97.04%
=======================================
Files 5 5
Lines 271 271
Branches 88 88
=======================================
Hits 263 263
Misses 8 8 Continue to review full report at Codecov.
|
This PR contains a:
Motivation / Use-Case
env.node-version
was undefined (matrix.node-version
was defined, but never used), therefore the linting used to run in Node.js 14This trips up my tools which scan which node versions are used in Github workflows :)
Breaking Changes
None
Additional Info
N/A