Skip to content

Commit c621ad7

Browse files
committed
workflow updated
1 parent 8644004 commit c621ad7

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ jobs:
2424
node-version: 18
2525
cache: 'pnpm'
2626

27-
- name: Set up pnpm
28-
uses: pnpm/action-setup@v3
29-
with:
30-
version: 8
27+
- name: Enable corepack and install pnpm
28+
run: |
29+
corepack enable
30+
corepack prepare pnpm@latest --activate
31+
32+
- name: Verify pnpm installation
33+
run: pnpm --version
3134

3235
- name: Install Dependencies
3336
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)