From 3122f04fa4ca7a330a4bb0230c25d47fed795efd Mon Sep 17 00:00:00 2001 From: b3ni15 Date: Thu, 16 Oct 2025 13:00:26 +0200 Subject: [PATCH] refactor: Add pnpm installation step to Vercel deployment workflows --- .gitea/workflows/vercel-preview.yaml | 2 ++ .gitea/workflows/vercel-production.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitea/workflows/vercel-preview.yaml b/.gitea/workflows/vercel-preview.yaml index 17580a2..8022f82 100644 --- a/.gitea/workflows/vercel-preview.yaml +++ b/.gitea/workflows/vercel-preview.yaml @@ -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 diff --git a/.gitea/workflows/vercel-production.yaml b/.gitea/workflows/vercel-production.yaml index c2ea287..b4a5feb 100644 --- a/.gitea/workflows/vercel-production.yaml +++ b/.gitea/workflows/vercel-production.yaml @@ -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