node-query/.travis.yml

19 lines
394 B
YAML
Raw Normal View History

language: node_js
sudo: false
node_js:
- "node"
- "5.1"
- "5.0"
2015-11-19 12:13:55 -05:00
- "4.1"
- "4.0"
before_script:
2015-11-20 09:14:09 -05:00
- npm install -g gulp
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -v -uroot test < ./test/sql/mysql.sql
- psql test postgres -f ./test/sql/pgsql.sql
2015-11-20 09:14:09 -05:00
2015-12-07 12:03:42 -05:00
script: gulp