Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9ec343a

Browse files
committed
Making circleci config to work again
1 parent 501143b commit 9ec343a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
# fallback to using the latest cache if no exact match is found
2727
- v1-dependencies-
2828

29-
- run: yarn install
30-
- run: yarn add plotly.js # peer dependency
29+
- run: npm install
30+
- run: npm install plotly.js # peer dependency
3131

3232
- save_cache:
3333
paths:
3434
- node_modules
3535
key: v1-dependencies-{{ checksum "package.json" }}
3636

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

0 commit comments

Comments
 (0)