Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit a87a63a

Browse files
committed
fix installation of react versions in travis
1 parent 3cd1589 commit a87a63a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
sudo: false
22
install:
33
- npm install
4-
- (cd backend/integration && npm install)
4+
- (cd backend/integration && npm install && make install)
55
- npm install -g browserify tape-run
66
language: node_js
77
node_js:
88
- "iojs"
99
script:
1010
- npm test
11-
- (cd backend/integration && make)
11+
- (cd backend/integration && make test)

backend/integration/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
install:
3+
for version in v0*; do\
4+
(cd $$version;npm install);\
5+
done;
6+
27
test:
38
browserify -t babelify is-travis.js attach-0.11.js|tape-run
49
browserify -t babelify is-travis.js attach-0.12.js|tape-run

0 commit comments

Comments
 (0)