Use setup-node to control Node version to build

This commit is contained in:
daz 2024-01-24 15:50:37 -07:00
parent f1361c71c2
commit b61360999f
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -3,9 +3,14 @@ name: 'Build and upload distribution'
runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build distribution
shell: bash
run: |
npm -v
node -v
npm install
npm run build
- name: Upload distribution

View file

@ -17,6 +17,9 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: |
npm -v