Skip to content

Commit

Permalink
fix: 解决ci下缓存不生效bug
Browse files Browse the repository at this point in the history
  • Loading branch information
any86 committed Apr 23, 2019
1 parent 56d389a commit e7e788b
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 @@ -24,7 +24,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
- dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
# - dependencies-

- run: yarn install
Expand All @@ -33,7 +33,7 @@ jobs:
- save_cache:
paths:
- node_modules
key: dependencies-{{ .Branch }}-{{ checksum "yarn.lock"}}
key: dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}

# run tests!
- run: yarn test --runInBand
Expand Down

0 comments on commit e7e788b

Please sign in to comment.