-
Notifications
You must be signed in to change notification settings - Fork 76
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 LTS version Node v14 instead of Node v12 as default #964
Conversation
Codecov Report
@@ Coverage Diff @@
## master #964 +/- ##
==========================================
- Coverage 62.31% 62.26% -0.06%
==========================================
Files 86 86
Lines 1937 1937
Branches 215 215
==========================================
- Hits 1207 1206 -1
Misses 695 695
- Partials 35 36 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
LGTM
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.
Please add node 14 into the github workflow as well, as that would have a direct impact on enforcing the node version used in this project!
@@ -89,7 +89,7 @@ | |||
"@types/dompurify": "^2.3.1", | |||
"@types/jasmine": "^3.8.2", | |||
"@types/jasminewd2": "2.0.8", | |||
"@types/node": "~12.12.6", | |||
"@types/node": "^15.6.1", |
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.
should it be 14?
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.
When I put it to 14 it fails haha, I also thought it was like that but actually there's a table that maps typescript versions with @type/node versions haha
https://stackoverflow.com/questions/64924337/i-am-getting-an-error-when-compiling-angular-6-project/65026470#65026470
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.
Can take a look at the errors here
https://github.com/CATcher-org/CATcher/runs/7536203036?check_suite_focus=true
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.
LGTM
469b050
to
6429b79
Compare
Summary:
Partially fixes #961 (still need to update documentation, which cedric will do).
Fixes #941
Changes Made:
nvm use
, it'll set node v14.17.6 as the default version.Proposed Commit Message: