Skip to content

Commit

Permalink
ci: use yarn.lock instead of package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Mar 13, 2018
1 parent 7020009 commit cf0b1b7
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 @@ -12,12 +12,12 @@ jobs:
- checkout
- restore_cache:
keys:
- v1-vue-{{ .Branch }}-{{ checksum "package-lock.json" }}
- v1-vue-{{ .Branch }}-{{ checksum "yarn.lock" }}

This comment was marked as abuse.

Copy link
@conngod

conngod Oct 8, 2018

hello shit man

- v1-vue-{{ .Branch }}-
- v1-vue-
- run: npm install
- save_cache:
key: v1-vue-{{ .Branch }}-{{ checksum "package-lock.json" }}
key: v1-vue-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/
- persist_to_workspace:
Expand Down

1 comment on commit cf0b1b7

@AlexOfABC
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello world

Please sign in to comment.