Skip to content

Commit 38a0e95

Browse files
committedFeb 11, 2025·
chore: fix ci
1 parent 0d4778b commit 38a0e95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/autofix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- run: corepack enable
16+
- run: npm i -fg corepack && corepack enable
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
cache: "pnpm"
2121
- run: pnpm install
2222
- run: pnpm lint:fix

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
ci:
1313
strategy:
1414
matrix:
15-
os: [ ubuntu-latest, windows-latest ]
15+
os: [ubuntu-latest, windows-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- uses: actions/checkout@v4
19-
- run: corepack enable
19+
- run: npm i -fg corepack && corepack enable
2020
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 20

0 commit comments

Comments
 (0)
Please sign in to comment.