Browse Source

Update config.yml

main
Julien Dudek 6 years ago
parent
commit
5c1ea95092
  1. 16
      .circleci/config.yml

16
.circleci/config.yml

@ -22,10 +22,10 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- save_cache: - save_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
tests: tests:
@ -34,10 +34,10 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
- run: yarn test:ci - run: yarn test:ci
- save_cache: - save_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
lint: lint:
@ -46,7 +46,7 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
- run: yarn lint && yarn format:check - run: yarn lint && yarn format:check
- save_cache: - save_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }} key: yarn-packages-v3{{ checksum "yarn.lock" }}
@ -63,10 +63,10 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
- save_cache: - save_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
e2e: e2e:
@ -75,7 +75,7 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: yarn-v3{{ checksum "yarn.lock" }}
- run: - run:
command: yarn test:e2e command: yarn test:e2e
environment: environment:

Loading…
Cancel
Save