Skip to content

Commit 9bc9076

Browse files
committed
chore: update build workflow file
1 parent 4ee3719 commit 9bc9076

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
with:
1818
node-version-file: 'package.json'
1919
cache: 'pnpm'
20+
- name: Install pnpm
21+
uses: pnpm/action-setup@v2
22+
with:
23+
version: 9.15.5
24+
run_install: false
2025
- name: Install dependencies with pnpm
2126
run: pnpm install --frozen-lockfile
2227
- name: Build
@@ -41,6 +46,11 @@ jobs:
4146
with:
4247
node-version-file: 'package.json'
4348
cache: 'pnpm'
49+
- name: Install pnpm
50+
uses: pnpm/action-setup@v2
51+
with:
52+
version: 9.15.5
53+
run_install: false
4454
- name: Install dependencies with pnpm
4555
run: pnpm install --frozen-lockfile
4656
- name: Run Linter
@@ -59,9 +69,13 @@ jobs:
5969
- name: Set up Node
6070
uses: actions/setup-node@v4
6171
with:
62-
node-version-file: 'package.json'
6372
node-version: ${{ matrix.node }}
6473
cache: 'pnpm'
74+
- name: Install pnpm
75+
uses: pnpm/action-setup@v2
76+
with:
77+
version: 9.15.5
78+
run_install: false
6579
- name: Install dependencies with pnpm
6680
run: pnpm install --frozen-lockfile
6781
- name: Run Unit Tests

0 commit comments

Comments
 (0)