Skip to content

Commit 374a2c0

Browse files
committed
Merge pull request shakacode#166 from shakacode/fix-ci-build-failures
Fix ci build failures
2 parents cd35765 + 25c6b55 commit 374a2c0

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.travis.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@ language:
22
- ruby
33
rvm:
44
- 2.2.3
5+
sudo: false
6+
addons:
7+
apt:
8+
sources:
9+
ubuntu-toolchain-r-test
10+
packages:
11+
g++-4.9
12+
env:
13+
global:
14+
- RAILS_ENV=test
15+
- CXX=g++-4.9
516
install:
617
- bundle install
718
- nvm install 5.0
819
- nvm use 5.0
9-
- npm install -g npm
1020
- npm install
1121
- cd client && npm run build:client
1222
- npm run build:server
13-
env:
14-
- export RAILS_ENV=test
1523
before_script:
1624
- export DISPLAY=:99.0
1725
- sh -e /etc/init.d/xvfb start

client/app/stores/commentsStore.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// react/prop-types rule is ignored because of this issue: https://github.com/yannickcr/eslint-plugin-react/issues/9
2+
/* eslint react/prop-types: 0 */
3+
14
import { compose, createStore, applyMiddleware, combineReducers } from 'redux';
25
import thunkMiddleware from 'redux-thunk';
36
import loggerMiddleware from '../middlewares/loggerMiddleware';

0 commit comments

Comments
 (0)