Permalink
Cannot retrieve contributors at this time
# .travis.yml | |
language: node_js | |
dist: xenial | |
sudo: false | |
cache: | |
directories: | |
- node_modules | |
services: | |
- postgresql | |
- mysql | |
node_js: | |
- '10' | |
- '12' | |
- '14' | |
before_script: | |
- psql -c 'create database bookshelf_test;' -U postgres | |
- mysql -e 'create database bookshelf_test;' | |
notifications: | |
email: false | |
env: | |
- KNEX_TEST_TIMEOUT=60000 | |
matrix: | |
fast_finish: true |