setup-node-nvm
setup-node-nvm copied to clipboard
Set up your GitHub Actions workflow with a specific version of node.js using nvm.
I'm new to GH actions and migrating from Travis. In Travis is `.nvmrc` is present that version will be used. Would it be possible to make this action respect the...
Our repo hosts the frontend and backend. The .nvmrc file resides in the frontend subdirectory. It'd be neat to have the possibility to point to a specific directory/.nvmrc file.
Currently, when using this action with the latest runners, you get a warning: ``` Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to...
Looks like `actions/setup-node` supports names now: https://github.com/actions/setup-node/pull/277. See also https://github.com/actions/setup-node/issues/26#issuecomment-1148828915, which is linked in this project’s readme, and is now closed
First of all, thanks for providing such useful action :+1: This is not an issue but a question. With nvm you can specify the architecture, i.e.: ``` nvm install 12.16.3...
Getting the following error on macOS but not ubuntu: ``` fatal: destination path '/Users/runner/.nvm' already exists and is not an empty directory. ``` I can rm -rf that directory before...