Skip to content

Commit 95843ba

Browse files
committed
Update CircleCI to use npm and delete yarn file
1 parent 27b7ff0 commit 95843ba

File tree

3 files changed

+8680
-5355
lines changed

3 files changed

+8680
-5355
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
docker:
99
# specify the version you desire here
10-
- image: circleci/node:8.0.0
10+
- image: circleci/node:10.9
1111

1212
# Specify service dependencies here if necessary
1313
# CircleCI maintains a library of pre-built images
@@ -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 install
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)