mirror of
https://github.com/cderche/greenlock-challenge-s3
synced 2025-05-10 15:36:33 +00:00
21 lines
345 B
YAML
21 lines
345 B
YAML
version: 2
|
|
jobs:
|
|
test:
|
|
docker:
|
|
- image: circleci/node:10.13
|
|
steps:
|
|
- checkout
|
|
- run: npm install
|
|
- run: npm run clean
|
|
- run: npm run coverage
|
|
- run: npm run codacy
|
|
- run: npm run clean
|
|
- store_artifacts:
|
|
path: ./coverage
|
|
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- test
|