Skip to content

Commit

Permalink
ci: 🚀 update deployment workflow to include pnpm setup and Node.js in…
Browse files Browse the repository at this point in the history
…stallation
  • Loading branch information
Mozart409 committed Dec 5, 2024
1 parent 4d1ab0c commit 6cc42c8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ jobs:
name: Deploy
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- name: Deploy
uses: cloudflare/wrangler-action@v3
with:
Expand Down

0 comments on commit 6cc42c8

Please sign in to comment.