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