-
-
Notifications
You must be signed in to change notification settings - Fork 108
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
Fix Node.js version of GitHub Actions workflow #936
Fix Node.js version of GitHub Actions workflow #936
Conversation
|
- name: Use Node.js 14.x | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
node-version: 16.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.
The lighthouse ci part specifies 16, the current LTS.
- name: Setup Node.js 12.x | ||
- name: Setup Node.js 16.x | ||
uses: actions/setup-node@master | ||
with: | ||
node-version: 12.x | ||
node-version: 16.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.
Like the lighthouse ci part, it specifies the current LTS.
Changed the version of Node.js used for testing and releases.
Version 18 is not yet LTS, but is being added because we want to test using version 18 at #935 (and Node.js version 18 will be LTS in the near future)
I am a bit fearful that this change will break existing mechanisms and workflows, but I will watch CI on this branch and make modifications as appropriate.