diff --git a/.circleci/config.yml b/.circleci/config.yml index 27229360da7c..274c8fccaa32 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,12 +91,21 @@ jobs: - restore_cache: name: Restore Yarn cache keys: - - build-yarn-2-cache-v4--{{ checksum "code/yarn.lock" }}--{{ checksum "scripts/yarn.lock" }} + - prettydocs-yarn-2-cache-v4--{{ checksum "code/yarn.lock" }}--{{ checksum "scripts/yarn.lock" }} + - run: + name: Install + command: | + cd scripts + yarn install + - save_cache: + name: Save Yarn cache + key: prettydocs-yarn-2-cache-v4--{{ checksum "code/yarn.lock" }}--{{ checksum "scripts/yarn.lock" }} + paths: + - ~/.yarn/berry/cache - run: name: Prettier command: | cd scripts - yarn yarn docs:prettier:check build: executor: @@ -637,3 +646,5 @@ workflows: parallelism: 26 requires: - build-sandboxes + +# VS Code Extension Version: 1.5.0 \ No newline at end of file