mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
25 lines
332 B
YAML
25 lines
332 B
YAML
sudo: required
|
|
language: node_js
|
|
node_js:
|
|
- stable
|
|
# - 6
|
|
# - 5
|
|
# - 4
|
|
# - 0.12
|
|
# - 0.11
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_script:
|
|
- sudo service mysql stop
|
|
- sudo service postgresql stop
|
|
- docker-compose up -d
|
|
- npm run setup:config
|
|
|
|
script:
|
|
- npm run test-ci
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|