-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Support Node.js RC version #454
Comments
Hello @yisibl. Thank you for your report. The setup-node action does not install release candidates. |
There is a PR open that would enable support for the nightlies: #360 |
I've changed to setup-node-nvm to install the RC version, but I still want setup-node to support this. |
Hello everyone. We released and updated the major tag with changes to install rc versions. Could you please confirm that everything works as expected? jobs:
build:
runs-on: ubuntu-latest
name: Node sample
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.0.0-rc.1’
- run: npm ci
- run: npm test |
Hello everyone. For now I'm going to close the issue. |
* Fix a few typos in `README.md` * docs(README): fix typos Co-authored-by: Federico Grandi <[email protected]>
I need to verify that an RC version of Node.js resolves a bug, is there a way to specify this version?
For example, I need to test
v12.22.12-rc.0
and other LTS version. https://nodejs.org/download/rc/My CI config:
See also: #360
The text was updated successfully, but these errors were encountered: