4e411ed7ed
This ensures that Koa is regularly tested against the latest version of Node and surfaces issues early. The main thing is that new version of Node could be released and tests that were previously passing would suddenly start failing (if there were a breaking change). I also reversed the order of Node versions in the test matrix so that recent = more relevant versions are at the top.
11 lines
190 B
YAML
11 lines
190 B
YAML
language: node_js
|
|
node_js:
|
|
- stable
|
|
- 4
|
|
- 3
|
|
- 2
|
|
- 1
|
|
- 0.12
|
|
sudo: false
|
|
script: "make test-travis"
|
|
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
|