mirror of
https://github.com/cderche/greenlock-storage-s3
synced 2025-12-24 05:18:39 +00:00
19 lines
314 B
YAML
19 lines
314 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 clean
|
|
- store_artifacts:
|
|
path: coverage
|
|
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- test |