Skip to content

Commit

Permalink
fix: fixed restore cache step
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 2, 2018
1 parent 1392261 commit 20de5dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion templates/circle.yml.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ jobs:
<<: *test
steps:
- checkout
- restore_cache: { keys: [v001-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}] }
- restore_cache:
keys:
- v0-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
- attach_workspace: {at: node_modules}
- run: yarn global add greenkeeper-lockfile@1<%- semantic_release ? '@anycli/semantic-release@1 semantic-release@12' : '' %>
- run: yarn add -D $DEPS
Expand Down

0 comments on commit 20de5dc

Please sign in to comment.