From cdb9af210ac4f0477b5a8054960ddd62f44b4373 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Thu, 23 Mar 2017 17:48:37 -0700 Subject: [PATCH] Don't run on Node 0.12 in Travis 0.12 reached end-of-life at the end of 2016 (see: https://github.com/nodejs/LTS). It is now failing CI runs too, presumably because of a Yarn upgrade on the CI boxes, which now complain: > Node.js version v0.12.18 does not meet requirement for yarn. Please > use Node.js 4 or later. (Example: https://travis-ci.org/graphql/graphql-js/jobs/214455818) So, let's drop it from the CI matrix. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 96b424678b..44eec571cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ node_js: - '7' - '6' - '4' - - '0.12' git: depth: 5