Skip to content

Commit

Permalink
fix CI cache and test node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnR committed Nov 2, 2023
1 parent 0df5aca commit 3014345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.18.0', '20.5.1']
node-version: ['16.20.2', '18.18.2', '20.5.1']
steps:
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
Expand All @@ -22,7 +22,7 @@ jobs:
id: cache
with:
path: node_modules
key: ${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- run: yarn test

0 comments on commit 3014345

Please sign in to comment.