Skip to content

Commit

Permalink
CI: use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Aug 3, 2024
1 parent 0183e70 commit f31bf4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
node-version: [ 18, 20, 22 ]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
run: npm ci
- name: Test
run: yarn test
run: npm test

0 comments on commit f31bf4e

Please sign in to comment.