Skip to content

Commit

Permalink
fix: setup pnpm in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
portalhacker committed Feb 19, 2025
1 parent 2c498a6 commit 4b99bb4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -30,15 +30,19 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22.12
cache: 'pnpm'
- name: Install dependencies
run: npm ci
run: pnpm install
- name: Build
run: npm run build
run: pnpm build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact

0 comments on commit 4b99bb4

Please sign in to comment.