Skip to content

Commit

Permalink
Use npm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
erichbehrens committed Nov 13, 2018
1 parent 2f941fb commit a41c2bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -20,15 +20,15 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install
- run: npm install

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

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


0 comments on commit a41c2bf

Please sign in to comment.