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

19 lines
317 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
- 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:
2019-05-09 08:21:05 +00:00
path: .nyc_output
2019-05-08 11:04:12 +00:00
workflows:
version: 2
test:
jobs:
- test