diff --git a/.circleci/config.yml b/.circleci/config.yml index b9be4cb..a9f8873 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ jobs: # fallback to using the latest cache if no exact match is found - v1-dependencies- - - run: yarn install + - run: npm i - save_cache: paths: @@ -34,10 +34,10 @@ jobs: key: v1-dependencies-{{ checksum "package.json" }} - run: ./node_modules/.bin/greenkeeper-lockfile-update - - run: yarn build + - run: npm run build # run tests! - - run: yarn test + - run: npm run test # send code coverage info to coveralls - run: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js