chinwagsocial/.travis.yml

39 lines
571 B
YAML
Raw Normal View History

language: ruby
cache: bundler
2016-10-16 02:44:43 +11:00
notifications:
email: false
env:
2016-10-16 02:44:43 +11:00
matrix:
- TRAVIS_NODE_VERSION="4"
global:
- LOCAL_DOMAIN=cb6e6126.ngrok.io
- LOCAL_HTTPS=true
- RAILS_ENV=test
addons:
postgresql: 9.4
rvm:
2016-11-12 09:37:39 +11:00
- 2.3.1
services:
- redis-server
2016-08-25 03:06:54 +10:00
bundler_args: --without development production --retry=3 --jobs=3
2016-09-03 22:02:24 +10:00
install:
2016-10-16 02:44:43 +11:00
- nvm install $TRAVIS_NODE_VERSION
2016-10-08 09:48:36 +11:00
- npm install -g npm@3
- npm install -g yarn
2016-09-03 22:20:59 +10:00
- bundle install
- yarn install
2016-09-03 22:02:24 +10:00
before_script:
2016-09-03 22:20:59 +10:00
- bundle exec rails db:create db:migrate
script:
- bundle exec rspec
- npm test