refactor: Change Vercel CLI installation method from pnpm to npm for consistency
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m35s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m34s

This commit is contained in:
2025-10-16 13:05:48 +02:00
parent a584cd0c66
commit 0dfdbc1a7e
2 changed files with 2 additions and 2 deletions

View File

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

View File

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