Skip to content

Commit

Permalink
Use volta's version of node
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet committed Feb 6, 2025
1 parent 19a74d7 commit e1bd735
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ jobs:
fail-fast: false
matrix:
node:
- 18
- 20
- 'package.json'
- 20.x

name: Unit tests w/ Node.js ${{matrix.node}}.x
name: Unit tests w/ Node.js ${{matrix.node}}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install Node ${{matrix.node}}.x
- name: Install Node ${{matrix.node}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}.x
node-version: ${{matrix.node}}
- run: yarn install
- run: yarn build:all
- run: yarn test
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: 'package.json'
- run: yarn install
- run: yarn build:all
- run: yarn typecheck:all
Expand Down

0 comments on commit e1bd735

Please sign in to comment.