From 8b015bc7fe6d6e1da225134e5b7701df73a4da00 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Thu, 6 Feb 2025 10:06:27 +0000 Subject: [PATCH] Fix CircleCI install (#864) --- .circleci/config.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7085f4060..9bcb7354b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ jobs: steps: - run: name: Install pnpm - command: sudo corepack enable + command: sudo npm install -g corepack@latest && sudo corepack enable - checkout - restore_cache: # See the configuration reference documentation for more details on using restore_cache and save_cache steps diff --git a/README.md b/README.md index 1460a0f56..103f13271 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ We use [`pnpm`](https://pnpm.io/installation), a fast, disk space efficient pack ## Installing -This repo uses node corepack to ensure pnpm v8 is used. +This repo uses node corepack to ensure pnpm v8 is used - `$ corepack enable` - `$ pnpm install`