Skip to content

Commit

Permalink
fix(CircleCI): include yarn.lock in cache test
Browse files Browse the repository at this point in the history
  • Loading branch information
effervescentia committed Apr 13, 2017
1 parent ece7637 commit f3205df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
steps:
- checkout
- restore_cache:
key: projectname-{{ .Branch }}-{{ checksum "package.json" }}
key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }}
- run:
name: Install
command: yarn
- save_cache:
key: projectname-{{ .Branch }}-{{ checksum "package.json"}}
key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }}
paths:
- "~/node_modules"
- run:
Expand Down

0 comments on commit f3205df

Please sign in to comment.