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 ce45d35 commit 3ad13bdCopy full SHA for 3ad13bd
1 file changed
.circleci/config.yml
@@ -3,7 +3,7 @@ jobs:
3
build:
4
docker:
5
# specify the version you desire here
6
- - image: circleci/node:10.13
+ - image: circleci/node:12.18
7
8
# Specify service dependencies here if necessary
9
# CircleCI maintains a library of pre-built images
@@ -24,7 +24,7 @@ jobs:
24
# fallback to using the latest cache if no exact match is found
25
- v1-dependencies-
26
27
- - run: yarn install
+ - run: npm ci
28
29
- save_cache:
30
paths:
@@ -34,7 +34,7 @@ jobs:
34
# run tests!
35
- run:
36
name: Run test suites
37
- command: yarn test
+ command: npm test
38
39
name: Run eslint
40
- command: yarn lint
+ command: npm run lint
0 commit comments