circleci: Add automatic builds
This commit is contained in:
parent
d69a1c2028
commit
07ba06276e
1 changed files with 17 additions and 0 deletions
17
.circleci/config.yml
Normal file
17
.circleci/config.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: node:6-alpine
|
||||||
|
working_directory: ~/mv-lite
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: Install SSH & Git
|
||||||
|
command: apk add --no-cache bash git openssh
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Install dependancies
|
||||||
|
command: npm install
|
||||||
|
- run:
|
||||||
|
name: Run tests
|
||||||
|
command: npm test
|
Loading…
Reference in a new issue