Farmbot-Web-App/.travis.yml

25 lines
772 B
YAML
Raw Normal View History

2017-07-06 01:25:46 -06:00
language: node_js
node_js:
2017-07-06 08:23:48 -06:00
- 6.11.0
2016-11-21 08:02:01 -07:00
before_script:
2017-07-06 08:23:48 -06:00
- sudo apt-get install curl -y
- mv node_modules/.bin/which node_modules/.bin/which.backup
- rvm install 2.4.1 && rvm use 2.4.1
- mv node_modules/.bin/which.backup node_modules/.bin/which
- cp config/database.travis.yml config/database.yml
- mkdir -p public/app
- touch public/app/index.html
- bundle install
- bundle exec rake db:create db:migrate
2017-07-06 08:23:48 -06:00
- yarn install
2016-11-21 07:57:55 -07:00
script:
2017-07-06 08:23:48 -06:00
- export SECRET_TOKEN=e815982094c62436066bafc9151f2d33c4a351a776654cb7487476de260a4592
- export MQTT_HOST=example.com
- export OS_UPDATE_SERVER=http://example.com
- export FW_UPDATE_SERVER=http://example.com
- export DB=postgresql
2017-07-20 10:16:18 -06:00
- export COVERALLS_REPO_TOKEN=lEX6nkql7y2YFCcIXVq5ORvdvMtYzfZdG
2017-07-06 08:23:48 -06:00
- bundle exec rspec
- npm run test
- npm run coverage