From 1617ecc52c797f4c6f3f604d22d24500c1d9b434 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 23 Oct 2020 14:17:02 +0200 Subject: [PATCH] Lock travis to not use node v15 (#3361) I have made this change due to current builds failing. We should not be testing in node v15 as you can see on this graph https://nodejs.org/en/about/releases/ 10 till 14 should be fine till 2023 and v15 is not LTS so should be excluded for now. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 21488414de..51040e49f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: node_js node_js: - 10 - 12 - - node + - 14 email: on_failure: change on_success: never