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