mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-13 08:01:49 +00:00

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
21 lines
446 B
YAML
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
|