Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# `vercel build` runs the project's install command (pnpm), so pnpm must
# be on PATH or the build fails with `spawn pnpm ENOENT`. pnpm 10 matches
# local dev (10.11.1) and Vercel's detected version for this project.
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '24'
cache: pnpm

- name: Install Vercel CLI
run: npm install -g vercel@latest
Expand Down
Loading