flying-squid/.circleci/config.yml
2018-05-13 09:26:48 -04:00

17 lines
379 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/node:10
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm i
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: npm run lint
- run: npm test