Skip to content

Commit

Permalink
fix: node version
Browse files Browse the repository at this point in the history
  • Loading branch information
crypto-matto committed Jun 7, 2024
1 parent 39132fb commit f8516d7
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,20 @@ on:

jobs:
unit:
name: Unit Test (Node.js v${{ matrix.node }})
name: Unit Test (Node.js v16)
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]

steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
node-version: 16

- uses: actions/checkout@v2

- uses: actions/cache@v2
id: cache-deps
with:
path: node_modules
key: ${{ runner.os }}-node${{ matrix.code }}-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node16-${{ hashFiles('**/package-lock.json') }}

- name: Run test
run: |
Expand Down

0 comments on commit f8516d7

Please sign in to comment.