Skip to content

Commit df3acb2

Browse files
committed
fix(deployment): fixes pnpm action setup
1 parent ffd2fa7 commit df3acb2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ jobs:
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v4
33+
- uses: pnpm/action-setup@v2
34+
with:
35+
version: latest
3336
- name: Set up Node
3437
uses: actions/setup-node@v4
3538
with:
36-
node-version: 20
39+
node-version-file: '.nvmrc'
3740
cache: 'pnpm'
3841
- name: Install dependencies
3942
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)