gl-store-s3.js/.circleci/config.yml

20 lines
351 B
YAML
Raw Normal View History

2019-05-08 11:04:12 +00:00
version: 2
jobs:
test:
docker:
- image: circleci/node:10.13
steps:
- checkout
- run: npm install
2019-05-09 07:58:16 +00:00
- run: npm install -g istanbul
2019-05-08 11:04:12 +00:00
- run: npm run clean
2019-05-09 07:56:33 +00:00
- run: npm run coverage
2019-05-08 11:04:12 +00:00
- run: npm run clean
2019-05-09 07:56:33 +00:00
- store_artifacts:
path: coverage
2019-05-08 11:04:12 +00:00
workflows:
version: 2
test:
jobs:
- test