From dec7561a061efcfc0c16d88f1a359b5a6b3d6db5 Mon Sep 17 00:00:00 2001 From: liwei Date: Wed, 24 Apr 2024 14:26:10 +0800 Subject: [PATCH] ci: fix --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c2c1f28..257dce5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,8 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Install PNPM + run: npm install --global pnpm - name: Install Vercel CLI - run: npm install --global vercel@canary + run: pnpm install --global vercel@canary - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts