koa-lite/.travis.yml
James Ide 4e411ed7ed [CI] Run tests on the stable version of Node
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.
2016-01-20 00:09:01 -08:00

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"