Skip to content

Commit 1486719

Browse files
authored
fix: ci
1 parent 80fcc5e commit 1486719

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@ jobs:
1818
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
21+
- name: Setup pnpm
22+
uses: pnpm/action-setup@v3
23+
with:
24+
version: 9
2125
- name: Use Node.js ${{ matrix.node-version }}
2226
uses: actions/setup-node@v4
2327
with:
2428
node-version: ${{ matrix.node-version }}
25-
cache: 'npm'
29+
cache: 'pnpm'
2630
- name: Install Vercel CLI
27-
run: npm install --global vercel@latest
31+
run: pnpm add --global vercel@latest
2832
- name: Pull Vercel Environment Information
2933
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
3034
- name: Build Project Artifacts

0 commit comments

Comments
 (0)