|
|
@ -6,15 +6,16 @@ jobs: |
|
|
image: ubuntu-2004:202010-01 |
|
|
image: ubuntu-2004:202010-01 |
|
|
steps: |
|
|
steps: |
|
|
- restore_cache: |
|
|
- restore_cache: |
|
|
keys: |
|
|
|
|
|
|
|
|
keys: |
|
|
- npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
- npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
- npm-v1-dependencies |
|
|
- npm-v1-dependencies |
|
|
- checkout |
|
|
|
|
|
- run: |
|
|
|
|
|
name: "install step" |
|
|
|
|
|
command: yarn install --path install/yarn |
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
name: "yarn install" |
|
|
|
|
|
command: yarn install --path install |
|
|
- save_cache: |
|
|
- save_cache: |
|
|
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} |
|
|
paths: |
|
|
paths: |
|
|
- install/yarn |
|
|
|
|
|
|
|
|
- install/yarn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|