Skip to content

Commit 8662c4e

Browse files
committedFeb 26, 2025
chore: update ci
1 parent b184f23 commit 8662c4e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/autofix.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ 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
- name: Fix lint issues
2323
run: pnpm run lint:fix
2424
- uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
2525
with:
26-
commit-message: "chore: apply automated lint fixes"
26+
commit-message: "chore: apply automated updates"

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
- run: corepack enable
18+
- run: npm i -fg corepack && corepack enable
1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
cache: "pnpm"
2323
- run: pnpm install
2424
- run: pnpm lint

0 commit comments

Comments
 (0)
Please sign in to comment.