Skip to content

Commit 996dbca

Browse files
committed
fix(ci): install pnpm
1 parent 2529e7c commit 996dbca

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,20 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: Checkout repository
14+
- name: Checkout
1515
uses: actions/checkout@v5
1616

17-
- name: Use Node.js
17+
- uses: pnpm/action-setup@v4
18+
name: Install pnpm
19+
with:
20+
version: 10
21+
run_install: false
22+
23+
- name: Install Node.js
1824
uses: actions/setup-node@v5
25+
with:
26+
node-version: 22
27+
cache: 'pnpm'
1928

2029
- name: Install dependencies
2130
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)