Skip to content

Commit

Permalink
update github action to use pnpm...
Browse files Browse the repository at this point in the history
  • Loading branch information
bandinopla committed Jan 10, 2025
1 parent 5bbbc51 commit 141f216
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies to be able to build
run: npm i --legacy-peer-deps
run: pnpm install --legacy-peer-deps

- name: Build
run: CI=false npm run build
run: CI=false pnpm run build

- name: Upload
uses: SamKirkland/[email protected]
Expand Down

0 comments on commit 141f216

Please sign in to comment.