Skip to content

Commit

Permalink
feat: add pnpm support for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Aug 5, 2024
1 parent 7e35992 commit 58907f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4

- run: npm ci
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest

- run: pnpm install

- name: Build project
run: npm run build
run: pnpm build

0 comments on commit 58907f0

Please sign in to comment.