Skip to content

Commit 727ab91

Browse files
Copilotfregante
andcommitted
Add missing setup-node steps to CI and Demo workflows
- Added actions/setup-node@v6 to Build job in CI workflow - Added actions/setup-node@v6 to build job in Demo workflow - Ensures correct Node version (22.18) is used in all jobs Co-authored-by: fregante <1402241+fregante@users.noreply.github.com>
1 parent 4fbc66d commit 727ab91

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v6
32+
- uses: actions/setup-node@v6
33+
with:
34+
node-version-file: package.json
3235
- run: npm ci
3336
- run: npm run build
3437
- name: Ensure that test URLs aren't included in the built file

.github/workflows/demo.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v6
19+
- uses: actions/setup-node@v6
20+
with:
21+
node-version-file: package.json
1922
- run: npm ci
2023
- run: npm run build:demo
2124
- run: npm run test:demo

0 commit comments

Comments
 (0)