mailtrain/.travis.yml
witzig b57615543b Fixed Travis CI Checks
Travis CI didn’t install the latest 7.x release somehow. Testing with
8.x henceforth.
2017-07-13 22:45:35 +02:00

18 lines
309 B
YAML

dist: trusty
sudo: required
language: node_js
node_js:
- 8
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