Skip to content

Commit 3014345

Browse files
committed
fix CI cache and test node 16
1 parent 0df5aca commit 3014345

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: ['18.18.0', '20.5.1']
14+
node-version: ['16.20.2', '18.18.2', '20.5.1']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- uses: volta-cli/action@v4
@@ -22,7 +22,7 @@ jobs:
2222
id: cache
2323
with:
2424
path: node_modules
25-
key: ${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
25+
key: ${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
2626
- if: steps.cache.outputs.cache-hit != 'true'
2727
run: yarn install
2828
- run: yarn test

0 commit comments

Comments
 (0)