CircleCI integration
This commit is contained in:
parent
eb6a2b8e9b
commit
966ea9492c
|
@ -0,0 +1,17 @@
|
||||||
|
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
|
|
@ -0,0 +1,2 @@
|
||||||
|
.env
|
||||||
|
/node-modules
|
|
@ -4,7 +4,8 @@
|
||||||
"description": "S3 backed storage strategy for greenlock-express.js (and greenlock.js)",
|
"description": "S3 backed storage strategy for greenlock-express.js (and greenlock.js)",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node ./test.js"
|
"test": "node ./test.js",
|
||||||
|
"clean": "node ./clean.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Reference in New Issue