Skip to content

Commit f31bf4e

Browse files
committed
CI: use npm
1 parent 0183e70 commit f31bf4e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
node-version: [ 18, 20, 22 ]
1010
steps:
1111
- name: checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
- name: setup Node.js ${{ matrix.node-version }}
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: ${{ matrix.node-version }}
1717
- name: Install
18-
run: yarn install
18+
run: npm ci
1919
- name: Test
20-
run: yarn test
20+
run: npm test

0 commit comments

Comments
 (0)