Skip to content

Commit

Permalink
Making circleci config to work again
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefarzat committed Jan 8, 2019
1 parent 501143b commit 9ec343a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install
- run: yarn add plotly.js # peer dependency
- run: npm install
- run: npm install plotly.js # peer dependency

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

# run tests!
- run: yarn lint
- run: yarn test --watch=false --code-coverage
- run: npm run lint
- run: npm run test -- --watch=false --code-coverage
- run: cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

0 comments on commit 9ec343a

Please sign in to comment.