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