.travis.yml
408 Bytes
language: node_js
services:
- mysql
before_script:
- cp test/postgres/knexfile.js.dist test/postgres/knexfile.js
- cp test/mysql/knexfile.js.dist test/mysql/knexfile.js
- psql -U postgres -c 'create database "bookshelf-cascade-delete";'
- mysql -e "create database \`bookshelf-cascade-delete\`;" -uroot
node_js:
- "4"
- "5"
- "6"
- "7"
after_success:
- npm run coveralls
sudo: false