mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
567 B
23 lines
567 B
language: node_js
|
|
node_js:
|
|
# LTS is our most important target
|
|
- "4"
|
|
# next LTS and master is next most important
|
|
- "6"
|
|
# still in LTS maintenance until fall 2016
|
|
# (also still in wide use)
|
|
- "0.10"
|
|
# will be unsupported as soon as 6 becomes LTS and 7 released
|
|
- "5"
|
|
# technically in LTS / distros, unbeloved
|
|
- "0.12"
|
|
env:
|
|
- DEPLOY_VERSION=testing
|
|
before_install:
|
|
- "npm config set spin false"
|
|
- "node . install -g ."
|
|
- "mkdir -p /var/run/couchdb"
|
|
sudo: false
|
|
script: "npm test"
|
|
notifications:
|
|
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8
|
|
|