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 dfd1521 commit 01c261cCopy full SHA for 01c261c
.circleci/config.yml
@@ -7,7 +7,7 @@ jobs:
7
build:
8
docker:
9
# specify the version you desire here
10
- - image: circleci/node:7.10
+ - image: circleci/node:8.6.0
11
12
# Specify service dependencies here if necessary
13
# CircleCI maintains a library of pre-built images
@@ -26,12 +26,12 @@ jobs:
26
# fallback to using the latest cache if no exact match is found
27
- v1-dependencies-
28
29
- - run: yarn install
+ - run: yarn bootstrap
30
31
- save_cache:
32
paths:
33
- node_modules
34
key: v1-dependencies-{{ checksum "package.json" }}
35
36
# run tests!
37
- - run: yarn test
+ - run: yarn lint && yarn test
0 commit comments