From af40eb54eaf3a645aecde90c4dc9f497eb33a28f Mon Sep 17 00:00:00 2001 From: Bennie Mosher Date: Mon, 21 Dec 2015 11:37:38 -0700 Subject: [PATCH] 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. --- .nvmrc | 1 + .travis.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 00000000..d346e2ab --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +5.3 diff --git a/.travis.yml b/.travis.yml index 711ba48e..a6c8f557 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ language: node_js +sudo: false node_js: - - "4.2.1" + - "stable"