Farmbot-Web-App/.travis.yml

37 lines
906 B
YAML
Raw Normal View History

2017-07-06 01:25:46 -06:00
language: node_js
node_js:
- 8.11.3
cache:
yarn: true
directories:
- /home/travis/.rvm/
- /home/travis/bundle
env:
2018-05-14 22:52:49 -06:00
global:
- SECRET_TOKEN=e815982094c62436066bafc9151f2d33c4a351a776654cb7487476de260a4592
- OS_UPDATE_SERVER=http://example.com
- FW_UPDATE_SERVER=http://example.com
- DB=postgresql
- COVERALLS_REPO_TOKEN=lEX6nkql7y2YFCcIXVq5ORvdvMtYzfZdG
matrix:
# Production like setup
- MQTT_HOST=example.com
# Self hosted like setup
- MQTT_HOST=127.0.0.1
API_HOST=127.0.0.1
NO_EMAILS=TRUE
before_install:
- rvm install 2.5.1
- rvm use 2.5.1
install:
- yarn install
- bundle install --jobs=3 --retry=3 --path=/home/travis/bundle
2016-11-21 08:02:01 -07:00
before_script:
2017-07-06 08:23:48 -06:00
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:create db:migrate
2016-11-21 07:57:55 -07:00
script:
2017-08-10 14:14:21 -06:00
- bundle exec rspec --fail-fast=3
- npm run typecheck
- npm run test-slow
- npm run coverage