Skip to content

Commit

Permalink
fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Feb 3, 2025
1 parent 2253d86 commit 7c29ae6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,19 @@ commands:
steps:
- run:
name: Install pnpm package manager
command: sudo npm install -g corepack@latest && corepack enable
command: |
export COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')"
corepack enable
- when:
condition:
not: << parameters.browsers >>
steps:
- run:
name: Install pnpm package manager
# See https://stackoverflow.com/a/73411601
command: sudo npm install -g corepack@latest && corepack enable --install-directory ~/bin
command: |
export COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')"
corepack enable --install-directory ~/bin
- run:
name: Resolve React version
Expand Down

0 comments on commit 7c29ae6

Please sign in to comment.