Skip to content

Commit 5877de1

Browse files
committed
Update production deployment workflow to use pnpm for dependency management
1 parent fbca054 commit 5877de1

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/production-deployment.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ env:
66

77
on:
88
push:
9-
# Pattern matched against refs/tags
109
tags:
11-
- '*' # Push events to every tag not containing /
10+
- '*'
1211

1312
jobs:
1413
Deploy-Production:
@@ -21,10 +20,14 @@ jobs:
2120
uses: actions/setup-node@v4
2221
with:
2322
node-version: '18'
24-
cache: 'npm'
23+
24+
- name: Setup pnpm
25+
uses: pnpm/action-setup@v4
26+
with:
27+
version: 9
2528

2629
- name: Install dependencies
27-
run: npm ci
30+
run: pnpm install --frozen-lockfile
2831

2932
- name: Install Vercel CLI
3033
run: npm install --global vercel@latest

0 commit comments

Comments
 (0)