0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-13 08:01:49 +00:00
renovatebot_renovate/lib/modules/manager/travis/__fixtures__/travis.yml
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/

BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
2022-03-04 09:04:02 +01:00

21 lines
446 B
YAML

dist: trusty
language: node_js
node_js:
- '8'
- '6'
- '4'
services:
- redis-server
- mongodb
- mysql
addons:
postgresql: '9.5'
before_script:
- psql -c 'create database keyv_test;' -U postgres
- mysql -u root -e 'CREATE DATABASE keyv_test;'
- mysql -u root -e 'GRANT ALL PRIVILEGES ON keyv_test.* TO 'mysql'@'localhost';'
script: npm run test:full
after_success: npm run coverage
notifications:
email:
on_success: never