Skip to content

Commit

Permalink
Use node 21 to avoid builds breaking on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed May 1, 2024
1 parent 572a906 commit f4d3f5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/autoBuildDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
- name: "Install dependencies"
run: npm install
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: latest
node-version: 21
- name: Install dependencies
run: npm install
- name: Build
run: npm run build-${{ matrix.runs-on }}
- name: Upload Artifact
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/autoTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: "Install dependencies"
run: npm install
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: latest
node-version: 21.x
- name: "Install dependencies"
run: npm install
- name: "Build & Sanity Test"
run: npm run test-${{ matrix.runs-on }}

Expand Down

0 comments on commit f4d3f5c

Please sign in to comment.