We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0183e70 commit f31bf4eCopy full SHA for f31bf4e
.github/workflows/test.yml
@@ -9,12 +9,12 @@ jobs:
9
node-version: [ 18, 20, 22 ]
10
steps:
11
- name: checkout
12
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
13
- name: setup Node.js ${{ matrix.node-version }}
14
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
15
with:
16
node-version: ${{ matrix.node-version }}
17
- name: Install
18
- run: yarn install
+ run: npm ci
19
- name: Test
20
- run: yarn test
+ run: npm test
0 commit comments