Skip to content

Commit

Permalink
Update CircleCI config to use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhefner committed Mar 15, 2019
1 parent 52c884e commit 8a4bd9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -26,18 +26,18 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install
- run: npm i

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

- run: ./node_modules/.bin/greenkeeper-lockfile-update
- run: yarn build
- run: npm run build

# run tests!
- run: yarn test
- run: npm run test

# send code coverage info to coveralls
- run: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
Expand Down

0 comments on commit 8a4bd9f

Please sign in to comment.