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 afa80c6
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,15 +24,15 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
- dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
# - dependencies-

- run: yarn install
- run: yarn add codecov

- save_cache:
paths:
- node_modules
- node_modules/
key: dependencies-{{ .Branch }}-{{ checksum "yarn.lock"}}

# run tests!
Expand Down

0 comments on commit afa80c6

Please sign in to comment.