File tree Expand file tree Collapse file tree 1 file changed +3
-17
lines changed
Expand file tree Collapse file tree 1 file changed +3
-17
lines changed Original file line number Diff line number Diff line change 1- # Javascript Node CircleCI 2.0 configuration file
2- #
3- # Check https://circleci.com/docs/2.0/language-javascript/ for more details
4- #
51version : 2
62jobs :
73 build :
84 docker :
9- # specify the version you desire here
105 - image : circleci/node:10.11
11-
12- # Specify service dependencies here if necessary
13- # CircleCI maintains a library of pre-built images
14- # documented at https://circleci.com/docs/2.0/circleci-images/
15- # - image: circleci/mongo:3.4.4
16-
176 working_directory : ~/repo
18-
197 steps :
208 - checkout
21-
229 # Download and cache dependencies
2310 - restore_cache :
2411 keys :
2512 - v1-dependencies-{{ checksum "package.json" }}
2613 # fallback to using the latest cache if no exact match is found
2714 - v1-dependencies-
28-
2915 - run : yarn install
30-
3116 - save_cache :
3217 paths :
3318 - node_modules
3419 key : v1-dependencies-{{ checksum "package.json" }}
35-
3620 # run tests!
3721 - run : yarn test
38-
22+ branches :
23+ ignore :
24+ - gh-pages
You can’t perform that action at this time.
0 commit comments