Skip to content

Commit f288234

Browse files
committed
fix(ci): use pnpm instead of npm for Pages workflow
1 parent f9c1e6c commit f288234

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/pages.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26+
- uses: pnpm/action-setup@v4
27+
2628
- uses: actions/setup-node@v4
2729
with:
2830
node-version: 22
29-
cache: npm
31+
cache: pnpm
3032

31-
- run: npm ci
33+
- run: pnpm install --frozen-lockfile
3234

3335
- run: node build.js
3436

0 commit comments

Comments
 (0)