Skip to content

Commit

Permalink
ci(deploy): install pnpm before proceeding
Browse files Browse the repository at this point in the history
  • Loading branch information
eventualbuddha committed Jun 9, 2022
1 parent bedad80 commit 3646417
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ aliases:
run:
name: install-dependencies
command: pnpm install --frozen-lockfile
install_pnpm: &install_pnpm
run:
name: Install pnpm
command: |
curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm
unit_test: &unit_test
steps:
- run:
name: Install pnpm
command: |
curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm
- *install_pnpm
- checkout
- *restore_cache_step
- *install_dependencies_step
Expand Down Expand Up @@ -60,6 +62,7 @@ jobs:
docker:
- image: cimg/node:lts
steps:
- *install_pnpm
- checkout
- *restore_cache_step
- *install_dependencies_step
Expand Down

0 comments on commit 3646417

Please sign in to comment.