Skip to content

Commit 575ed21

Browse files
update GitHub Actions workflow to use pnpm for dependency installation and build
1 parent 421d520 commit 575ed21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflow/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
node-version: 18
2020

2121
- name: Install dependencies
22-
run: npm install
22+
run: pnpm install
2323

2424
- name: Build Next.js app
25-
run: npm run build
25+
run: pnpm run build
2626

2727
- name: Deploy to Vercel
2828
run: npx vercel --token=${{ secrets.VERCEL_TOKEN }} --prod

0 commit comments

Comments
 (0)