Skip to content

Commit

Permalink
update .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Miachol committed Nov 11, 2018
1 parent 5270e83 commit 31a86a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,19 @@ jobs:
steps:
- checkout

- run: source /etc/profile
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install
- run: source /etc/profile && yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: yarn test
- run: source /etc/profile && yarn test

0 comments on commit 31a86a4

Please sign in to comment.