|
|
@ -9,6 +9,17 @@ jobs: |
|
|
keys: |
|
|
keys: |
|
|
- npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
- npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
- run: yarn global add node-gyp && yarn install |
|
|
- run: yarn global add node-gyp && yarn install |
|
|
|
|
|
- run: |
|
|
|
|
|
name: Creating Dummy Artifacts |
|
|
|
|
|
command: echo "my artifact file" > /tmp/artifact-1; |
|
|
|
|
|
mkdir /tmp/artifacts; |
|
|
|
|
|
echo "my artifact files in a dir" > /tmp/artifacts/artifact-2; |
|
|
|
|
|
- store_artifacts: |
|
|
|
|
|
path: /tmp/artifact-1 |
|
|
|
|
|
destination: doc-server |
|
|
|
|
|
- store_artifacts: |
|
|
|
|
|
path: /tmp/artifacts |
|
|
|
|
|
- run: yarn doc:build |
|
|
- save_cache: |
|
|
- save_cache: |
|
|
paths: |
|
|
paths: |
|
|
- ./node_modules |
|
|
- ./node_modules |
|
|
|