Skip to content

Commit

Permalink
add pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
icepcp authored Oct 20, 2024
1 parent 5359876 commit 7c4b3b9
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,24 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

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

- name: Install dependencies
run: pnpm install

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

0 comments on commit 7c4b3b9

Please sign in to comment.