We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fcc5e commit 1486719Copy full SHA for 1486719
.github/workflows/deploy.yml
@@ -18,13 +18,17 @@ jobs:
18
uses: actions/checkout@v4
19
with:
20
fetch-depth: 0
21
+ - name: Setup pnpm
22
+ uses: pnpm/action-setup@v3
23
+ with:
24
+ version: 9
25
- name: Use Node.js ${{ matrix.node-version }}
26
uses: actions/setup-node@v4
27
28
node-version: ${{ matrix.node-version }}
- cache: 'npm'
29
+ cache: 'pnpm'
30
- name: Install Vercel CLI
- run: npm install --global vercel@latest
31
+ run: pnpm add --global vercel@latest
32
- name: Pull Vercel Environment Information
33
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
34
- name: Build Project Artifacts
0 commit comments