Updated .travis.yml and added .nvmrc

Added `sudo: false` to `.travis.yml` to enable project to be built
on new Travis CI infrastructure. Moved `node_js` version in
`.travis.yml` to use 'stable' so that we are always running against the
latest version. Added a new `.nvmrc` so that when running tests locally
we are all using the same version of Node.
This commit is contained in:
Bennie Mosher 2015-12-21 11:37:38 -07:00
parent cc5db8f974
commit af40eb54ea
2 changed files with 3 additions and 1 deletions

1
.nvmrc Normal file
View file

@ -0,0 +1 @@
5.3

View file

@ -1,3 +1,4 @@
language: node_js
sudo: false
node_js:
- "4.2.1"
- "stable"