chore: circle ci (#149)

This commit is contained in:
Henrique Dias 2019-05-11 22:59:50 +01:00 committed by GitHub
parent 31b70a7736
commit ead7fb4233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 8 deletions

15
.circleci/config.yml Normal file
View File

@ -0,0 +1,15 @@
version: 2
jobs:
build:
docker:
- image: circleci/node
steps:
- checkout
- run: npm install
- run: npm run lint
- run: npm run build
workflows:
version: 2
build:
jobs:
- build

View File

@ -1,8 +0,0 @@
language: node_js
node_js:
- 10.8.0
script:
- npm run lint
- npm run build