refactor: Update Vercel CLI installation to use pnpm for consistency across workflows
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Vercel Production Deployment / Deploy-Production (push) Failing after 9s

This commit is contained in:
2025-10-16 13:05:06 +02:00
parent 3122f04fa4
commit a584cd0c66
2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -14,7 +14,7 @@ jobs:
- name: Install pnpm - name: Install pnpm
run: npm install -g pnpm run: npm install -g pnpm
- name: Install Vercel CLI - name: Install Vercel CLI
run: npm install --global vercel@latest run: pnpm install --global vercel@latest
- name: Pull Vercel Environment Information - name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts - name: Build Project Artifacts