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.