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

20 lines
344 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-09 09:14:05 +00:00
- run: npm run codacy
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 09:07:11 +00:00
path: ./coverage
2019-05-08 11:04:12 +00:00
workflows:
version: 2
test:
jobs:
- test