|
|
|
@ -100,19 +100,16 @@ jobs: |
|
|
|
- image: circleci/node:8.12 |
|
|
|
- image: circleci/node:8.12 |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- checkout |
|
|
|
- checkout |
|
|
|
# - restore_cache: |
|
|
|
- restore_cache: |
|
|
|
# key: dependency-cache-{{ checksum "yarn.lock" }} |
|
|
|
key: dependency-cache-{{ checksum "yarn.lock" }} |
|
|
|
- run: |
|
|
|
|
|
|
|
name: node version |
|
|
|
|
|
|
|
command: 'node --version' |
|
|
|
|
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: yarn install |
|
|
|
name: yarn install |
|
|
|
command: 'yarn install --pure-lockfile --no-progress' |
|
|
|
command: 'yarn install --pure-lockfile --no-progress' |
|
|
|
no_output_timeout: 15m |
|
|
|
no_output_timeout: 15m |
|
|
|
# - save_cache: |
|
|
|
- save_cache: |
|
|
|
# key: dependency-cache-{{ checksum "yarn.lock" }} |
|
|
|
key: dependency-cache-{{ checksum "yarn.lock" }} |
|
|
|
# paths: |
|
|
|
paths: |
|
|
|
# - node_modules |
|
|
|
- node_modules |
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: frontend tests |
|
|
|
name: frontend tests |
|
|
|
command: './scripts/circle-test-frontend.sh' |
|
|
|
command: './scripts/circle-test-frontend.sh' |
|
|
|
|