refactor: Add pnpm installation step to Vercel deployment workflows
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Vercel Production Deployment / Deploy-Production (push) Has been cancelled

This commit is contained in:
2025-10-16 13:00:26 +02:00
parent 872d590ff0
commit 3122f04fa4
2 changed files with 4 additions and 0 deletions

View File

@@ -13,6 +13,8 @@ jobs:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Install pnpm
run: npm install -g pnpm
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts

View File

@@ -11,6 +11,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install pnpm
run: npm install -g pnpm
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information