From ad7702f15a89d7056459375898fa7bfa5f96e5ef Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Wed, 13 Feb 2019 12:57:35 -0800 Subject: [PATCH] Disable node 6 (#29832) * Disable node 6 It exits LTS in a couple of months, and doesn't support async/await, meaning that it blocks us from switching Travis to use gulp instead of jake. * Swap in node 8 for node 6 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0f720b7375e..b35dabcbb5f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js node_js: - 'node' - '10' - - '6' + - '8' sudo: false