Skip to content

Commit

Permalink
ci: correctly use the node version from the matrix (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 authored Sep 24, 2024
1 parent 792a128 commit 4fc08ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-node@v4
with:
cache: npm
node-version: 16
node-version: ${{ matrix.node_version }}
- run: npm ci
- run: npm run test --ignore-scripts
test:
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: npm
node-version: 16
node-version: "lts/*"
- run: npm ci
- run: npm run lint
- run: npm run validate:ts
Expand Down

0 comments on commit 4fc08ec

Please sign in to comment.