get-node-version-from-volta
ActionsTags
(1)If you are using volta to manage node versions, you can use this action to automate the management of node versions in workflows.
Please add to an existing workflow file with reference to the following.
name: get node version
on: push
jobs:
buid:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get node version from volta
id: get-node-version
uses: keita-hino/get-node-version-from-volta@main
- uses: actions/setup-node@v2
with:
node-version: ${{ steps.get-node-version.outputs.nodeVersion }}
The node version specified in package.json will be set.
...
"volta": {
"node": "18.16.0"
}
...
All scripts in this project are released under the MIT License.
get-node-version-from-volta is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.