Skip to content

Commit

Permalink
perf: improve ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Barrior committed Oct 22, 2019
1 parent f6bb48f commit 6ae434e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,14 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
key: dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run: yarn install
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
key: dependency-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- run: yarn test
- run: yarn coverage
- store_artifacts:
path: test-results.xml
prefix: tests
- store_artifacts:
path: coverage
prefix: coverage
- store_test_results:
path: test-results.xml

0 comments on commit 6ae434e

Please sign in to comment.