1
Fork 0

Use circleci 2

This commit is contained in:
Jake Howard 2017-10-29 10:13:52 +00:00
parent 3901675c78
commit d7630ee20d
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 15 additions and 11 deletions

15
.circleci/config.yml Normal file
View file

@ -0,0 +1,15 @@
version: 2.0
jobs:
build:
docker:
- image: circleci/node:6.10
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Build
command: npm run build

View file

@ -1,11 +0,0 @@
machine:
node:
version: 6.10.2
dependencies:
pre:
- npm install
test:
pre:
- npm run build