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 baa42af commit f544b9fCopy full SHA for f544b9f
.circleci/config.yml
@@ -26,18 +26,18 @@ jobs:
26
# fallback to using the latest cache if no exact match is found
27
- v1-dependencies-
28
29
- - run: yarn install
+ - run: npm i
30
31
- save_cache:
32
paths:
33
- node_modules
34
key: v1-dependencies-{{ checksum "package.json" }}
35
36
- run: ./node_modules/.bin/greenkeeper-lockfile-update
37
- - run: yarn build
+ - run: npm run build
38
39
# run tests!
40
- - run: yarn test
+ - run: npm run test
41
42
# send code coverage info to coveralls
43
- run: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
0 commit comments