Basic Travis CI integration

This commit is contained in:
witzig 2017-05-29 00:54:04 +02:00
parent 731226dfeb
commit aeb5bf18be

18
.travis.yml Normal file
View file

@ -0,0 +1,18 @@
dist: trusty
sudo: required
language: node_js
node_js:
- 7
services:
- mysql
before_install:
- sudo apt-get -q -y install pwgen imagemagick
install:
- sudo bash test/e2e/install.sh
- npm install
before_script:
- npm run starttest > /dev/null 2>&1 &
- sleep 10
script:
- grunt
- npm run _e2e