Skip to content

Commit

Permalink
Update github action files so they use pnpm instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
earrietadev committed Sep 17, 2024
1 parent cca2641 commit df7932e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-chrome-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
node-version: '${{ env.NODE_VERSION }}'

- name: Install dependencies
run: npm ci
run: npm i -g pnpm && pnpm i

- name: Create distribution zip file
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-firefox-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
node-version: '${{ env.NODE_VERSION }}'

- name: Install dependencies
run: npm ci
run: npm i -g pnpm && pnpm i

- name: Create distribution and src files
run: |
Expand Down

0 comments on commit df7932e

Please sign in to comment.