Skip to content

Commit

Permalink
Update workflows to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjitse-E committed Mar 8, 2024
1 parent 2235671 commit 535442d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '20'

- run: npm install
- run: npm run test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '20'

- run: npm install
- run: npm run build

0 comments on commit 535442d

Please sign in to comment.