From 9ef3109f2e6ed2003b683e774c69738c712f76fb Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Thu, 22 Dec 2022 20:09:07 +0100 Subject: [PATCH] let prettydocs have it's own cache --- .circleci/config.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) 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