added .travis.yml

This commit is contained in:
REJack 2019-10-31 12:10:29 +01:00
parent 67024d83e4
commit 08c597d413
No known key found for this signature in database
GPG key ID: 9F3976CC630CC888

22
.travis.yml Normal file
View file

@ -0,0 +1,22 @@
language: node_js
node_js:
- 8
- 9
- 10
- 11
- 12
env:
- INSTALL=yarn
- INSTALL=npm
matrix:
fast_finish: true
install:
- if [ "yarn" == $INSTALL ]; then yarn install; fi
- if [ "npm" == $INSTALL ]; then npm install; fi
script:
- echo 'Tests must be configured'