Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
chore(circle-ci): change cache name to wipe cache
Browse files Browse the repository at this point in the history
  • Loading branch information
hutson committed Jul 12, 2018
1 parent 81b2f71 commit c0bf139
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ test_plan: &test_plan
- checkout
- restore_cache:
keys:
- dependencies_test_plan
- v1-dependencies_test_plan
- run: yarn install --frozen-lockfile
- save_cache:
paths:
- node_modules
- ${HOME}/.cache/yarn
key: dependencies_test_plan
key: v1-dependencies_test_plan
- run: yarn test
- run: $(yarn bin)/codecov || echo "CodeCov did not collect coverage reports"

Expand All @@ -40,27 +40,27 @@ jobs:
- checkout
- restore_cache:
keys:
- dependencies_deliver
- v1-dependencies_deliver
- run: yarn install --frozen-lockfile
- save_cache:
paths:
- node_modules
- ${HOME}/.cache/yarn
key: dependencies_deliver
key: v1-dependencies_deliver
- run: $(yarn bin)/semantic-release-github
deploy:
<<: [*node_8]
steps:
- checkout
- restore_cache:
keys:
- dependencies_deploy
- v1-dependencies_deploy
- run: yarn install --frozen-lockfile
- save_cache:
paths:
- node_modules
- ${HOME}/.cache/yarn
key: dependencies_deploy
key: v1-dependencies_deploy
- run: $(yarn bin)/npm-publish-git-tag

workflows:
Expand Down

0 comments on commit c0bf139

Please sign in to comment.