Skip to content

Commit 608af81

Browse files
committed
fixed CI
1 parent 0cead0f commit 608af81

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [16.x]
11+
node-version: [22.x]
1212

1313
steps:
14-
- name: Checkout
15-
uses: actions/checkout@v3
16-
17-
- name: Setup Node.js
14+
- run: corepack enable
15+
16+
- uses: actions/checkout@v4
17+
18+
- name: Use Node.js ${{ matrix.node-version }}
1819
uses: actions/setup-node@v3
1920
with:
2021
node-version: ${{ matrix.node-version }}
2122
cache: 'yarn'
2223

23-
- name: yarn install --frozen-lockfile
24-
run: yarn install --frozen-lockfile
25-
24+
- run: yarn install
25+
2626
- name: yarn run cleantest
2727
run: yarn run cleantest
2828

0 commit comments

Comments
 (0)