Browse Source

Update circle config

main
jxom 7 years ago
parent
commit
086322a721
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -7,16 +7,16 @@ jobs:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- v1-dependencies-{{ checksum "package.json" }} - dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found # fallback to using the latest cache if no exact match is found
- v1-dependencies- - dependencies-
- run: - run:
name: Install name: Install
command: yarn install command: yarn install
- save_cache: - save_cache:
paths: paths:
- node_modules - node_modules
key: v1-dependencies-{{ checksum "package.json" }} key: dependencies-{{ checksum "package.json" }}
- run: - run:
name: Check Prettier, ESLint, Flow name: Check Prettier, ESLint, Flow
command: yarn ci-check command: yarn ci-check

Loading…
Cancel
Save