Skip to content

Commit

Permalink
chore: use npm on circle, and add yarn.lock to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
rigor789 committed Sep 10, 2019
1 parent 0426771 commit e82c42b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11,194 deletions.
11 changes: 5 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@ jobs:

- restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}
- v1-dependencies-{{ checksum "package-lock.json" }}
- v1-dependencies-

- run: yarn install
- run: npm ci

- save_cache:
paths:
- node_modules
- ~/.cache/yarn
key: v1-dependencies-{{ checksum "yarn.lock" }}
- ~/.cache/npm
key: v1-dependencies-{{ checksum "package-lock.json" }}

- run: npx semantic-release
#- run: yarn test --ci --runInBand
- run: npm run semantic-release
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
npm-debug.log
vue-scrollto.js
yarn.lock
Loading

0 comments on commit e82c42b

Please sign in to comment.