|
|
@ -60,6 +60,21 @@ jobs: |
|
|
key: yarn-v-packages-{{ checksum "yarn.lock" }} |
|
|
key: yarn-v-packages-{{ checksum "yarn.lock" }} |
|
|
paths: |
|
|
paths: |
|
|
- ./node_modules |
|
|
- ./node_modules |
|
|
|
|
|
artifacts: |
|
|
|
|
|
docker: |
|
|
|
|
|
- image: "circleci/node:12" # the primary container, where your job's commands are run |
|
|
|
|
|
steps: |
|
|
|
|
|
- checkout # check out the code in the project directory |
|
|
|
|
|
- restore_cache: |
|
|
|
|
|
key: yarn-v-packages-{{ checksum "yarn.lock" }} |
|
|
|
|
|
- run: |
|
|
|
|
|
command: yarn doc:build |
|
|
|
|
|
- store_artifacts: |
|
|
|
|
|
path: /doc-server |
|
|
|
|
|
- save_cache: |
|
|
|
|
|
key: yarn-v-packages-{{ checksum "yarn.lock" }} |
|
|
|
|
|
paths: |
|
|
|
|
|
- ./node_modules |
|
|
|
|
|
|
|
|
workflows: |
|
|
workflows: |
|
|
build: |
|
|
build: |
|
|
@ -74,4 +89,7 @@ workflows: |
|
|
- test_e2e: |
|
|
- test_e2e: |
|
|
requires: |
|
|
requires: |
|
|
- build |
|
|
- build |
|
|
|
|
|
- artifacts: |
|
|
|
|
|
requires: |
|
|
|
|
|
- build |
|
|
|
|
|
|