Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit af56284

Browse files
committed
fix: CI script
1 parent e7e5d78 commit af56284

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v3
9+
- uses: pnpm/action-setup@v2
10+
with:
11+
version: latest
912
- uses: actions/setup-node@v3
1013
with:
1114
node-version: "lts/*"
12-
cache: "yarn"
13-
cache-dependency-path: "**/yarn.lock"
14-
- run: yarn run init
15-
- run: yarn build
15+
cache: "pnpm"
16+
- run: pnpm run init
17+
- run: pnpm build

0 commit comments

Comments
 (0)