Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501143b commit 9ec343aCopy full SHA for 9ec343a
.circleci/config.yml
@@ -26,15 +26,15 @@ jobs:
26
# fallback to using the latest cache if no exact match is found
27
- v1-dependencies-
28
29
- - run: yarn install
30
- - run: yarn add plotly.js # peer dependency
+ - run: npm install
+ - run: npm install plotly.js # peer dependency
31
32
- save_cache:
33
paths:
34
- node_modules
35
key: v1-dependencies-{{ checksum "package.json" }}
36
37
# run tests!
38
- - run: yarn lint
39
- - run: yarn test --watch=false --code-coverage
+ - run: npm run lint
+ - run: npm run test -- --watch=false --code-coverage
40
- run: cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
0 commit comments