Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Javascript Node CircleCI 2.0 configuration file
- #
- # Check https://circleci.com/docs/2.0/language-javascript/ for more details
- #
- version: 2
- jobs:
- build:
- docker:
- - image: circleci/node:11.10.1
- working_directory: ~/repo/cats-client
- steps:
- - checkout
- path: ~/cats-client
- # Download and cache dependencies
- - restore_cache:
- keys:
- - v1-dependencies-{{ checksum "package.json" }}
- # fallback to using the latest cache if no exact match is found
- - v1-dependencies-
- - run: npm install
- - save_cache:
- paths:
- - node_modules
- key: v1-dependencies-{{ checksum "package.json" }}
- # run tests!
- - run: npm test
- version: 2.1
- executors:
- node:
- docker:
- - image: circleci/node:10
- workflows:
- version: 2
- build_and_test:
- jobs:
- - build
- - test
- jobs:
- build:
- working_directory: ~/repo/cats-client
- executor: node
- steps:
- - checkout
- path: ~/cats-client
- - restore_cache:
- keys:
- - v1-dependencies-{{ checksum "package.json" }}
- # fallback to using the latest cache if no exact match is found
- - v1-dependencies-
- - run: npm install
- - save_cache:
- paths:
- - node_modules
- key: v1-dependencies-{{ checksum "package.json" }}
- - run: npm run build
- test:
- executor: node
- steps:
- - checkout
- - run: npm install
- - run: npm run test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement