Skip to content

Commit f544b9f

Browse files
committed
Update circleci config to use npm
1 parent baa42af commit f544b9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

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

29-
- run: yarn install
29+
- run: npm i
3030

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

3636
- run: ./node_modules/.bin/greenkeeper-lockfile-update
37-
- run: yarn build
37+
- run: npm run build
3838

3939
# run tests!
40-
- run: yarn test
40+
- run: npm run test
4141

4242
# send code coverage info to coveralls
4343
- run: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

0 commit comments

Comments
 (0)