.travis.yml
582 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
language: node_js
node_js:
- "4"
- "6"
sudo: false
cache:
directories:
- node_modules
addons:
postgresql: "9.4"
before_script:
- "npm install -g mysql"
- "npm install -g sqlite3"
- "npm install -g pg pg-hstore"
- "mysql -e 'create database sequelize_auto_test;'"
- "psql -c 'create database sequelize_auto_test;' -U postgres"
script:
- "npm run test"
branches:
only:
- master
- /^greenkeeper/.*$/
notifications:
email:
- me@danieldurante.com
env:
- DB=mysql DIALECT=mysql
- DB=mysql DIALECT=postgres
- DB=mysql DIALECT=sqlite