fake-log/.circleci/config.yml
2018-09-11 16:19:05 +02:00

30 lines
463 B
YAML

version: 2
jobs:
test:
working_directory: ~/fakelog
docker:
- image: circleci/node
steps:
- checkout
- restore_cache:
key: cache-{{ checksum "package-lock.json" }}
- run: npm install
- save_cache:
paths:
- ~/.npm
- ./node_modules
key: cache-{{ checksum "package-lock.json" }}
- run: npm run test
workflows:
version: 2
test:
jobs:
- test