Skip to content

Commit 63799f3

Browse files
committed
fix GitHub action workflow for pnpm
1 parent 73d5b05 commit 63799f3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
- uses: pnpm/action-setup@v4
13+
with:
14+
version: 9
1215
- uses: actions/setup-node@v4
1316
with:
1417
node-version: 20.x
15-
cache: yarn
16-
cache-dependency-path: yarn.lock
17-
- run: yarn
18-
- run: yarn build
18+
cache: pnpm
19+
- run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)