let prettydocs have it's own cache

This commit is contained in:
Norbert de Langen 2022-12-22 20:09:07 +01:00
parent a181ae8fae
commit 9ef3109f2e
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -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