Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #906 from lirantal/feature/travis-add-node-v4
Browse files Browse the repository at this point in the history
Supporting NodeJS v4 in Travis CI
  • Loading branch information
lirantal committed Sep 16, 2015
2 parents 3e69385 + 97d7eb7 commit be3622b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- 0.10
- 0.12
- 4
env:
- NODE_ENV=travis
matrix:
allow_failures:
- node_js: 4
services:
- mongodb
before_install:
Expand All @@ -20,3 +25,8 @@ notifications:
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
cache:
apt: true
directories:
- node_modules/
- public/lib/

0 comments on commit be3622b

Please sign in to comment.