Skip to content

Commit be32d4a

Browse files
authored
Merge pull request #260 from ethereum/ci
Run tests on all node version, but coveralls only on Node 10
2 parents a629477 + a9c72db commit be32d4a

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.travis.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
language: node_js
2-
node_js:
3-
- '8'
4-
- '6'
5-
- '4'
2+
63
branches:
74
# We need to whitelist the branches which we want to have "push" automation.
85
# Pull request automation is not constrained to this set of branches.
@@ -12,7 +9,18 @@ matrix:
129
fast_finish: true
1310
include:
1411
- os: linux
12+
node_js: '4'
1513
env: CXX=g++-4.8 TEST_SUITE=test
1614
- os: linux
15+
node_js: '6'
16+
env: CXX=g++-4.8 TEST_SUITE=test
17+
- os: linux
18+
node_js: '8'
19+
env: CXX=g++-4.8 TEST_SUITE=test
20+
- os: linux
21+
node_js: '10'
22+
env: CXX=g++-4.8 TEST_SUITE=test
23+
- os: linux
24+
node_js: '10'
1725
env: CXX=g++-4.8 TEST_SUITE=coveralls
1826
script: npm run $TEST_SUITE

0 commit comments

Comments
 (0)