Add travis.yml

This commit is contained in:
Scott Carver
2018-11-11 21:05:43 -08:00
committed by Lachie Kermode
parent 5bad1ed452
commit 7a8fa725e6

15
.travis.yml Normal file
View File

@@ -0,0 +1,15 @@
language: node_js
node_js:
- "stable"
cache:
directories:
- node_modules
before_script:
- npm install -g yarn
- cp ./src/config.example.js ./src/config.js
install:
- yarn
script:
- yarn build
- yarn lint
- yarn test