Skip to content

Fix ci build failures #166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 3, 2015
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,24 @@ language:
- ruby
rvm:
- 2.2.3
sudo: false
addons:
apt:
sources:
ubuntu-toolchain-r-test
packages:
g++-4.9
env:
global:
- RAILS_ENV=test
- CXX=g++-4.9
install:
- bundle install
- nvm install 5.0
- nvm use 5.0
- npm install -g npm
- npm install
- cd client && npm run build:client
- npm run build:server
env:
- export RAILS_ENV=test
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
Expand Down
3 changes: 3 additions & 0 deletions client/app/stores/commentsStore.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// react/prop-types rule is ignored because of this issue: https://github.com/yannickcr/eslint-plugin-react/issues/9
/* eslint react/prop-types: 0 */

import { compose, createStore, applyMiddleware, combineReducers } from 'redux';
import thunkMiddleware from 'redux-thunk';
import loggerMiddleware from '../middlewares/loggerMiddleware';
Expand Down