mirror of
https://github.com/cderche/greenlock-storage-s3
synced 2025-02-22 22:28:04 +00:00
17 lines
260 B
YAML
17 lines
260 B
YAML
version: 2
|
|
jobs:
|
|
test:
|
|
docker:
|
|
- image: circleci/node:10.13
|
|
steps:
|
|
- checkout
|
|
- run: npm install
|
|
- run: npm run clean
|
|
- run: npm run test
|
|
- run: npm run clean
|
|
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- test |