From 0874b493020dc0f9b0d76294efae622a0aae30ed Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Tue, 21 Apr 2020 23:57:01 +0200 Subject: [PATCH] Use Node LTS releases to fix Travis CI builds (issue 10790) Hopefully we don't need the *latest* Node.js releases for the unit-tests to work on Travis, and by using "long-term support" releases instead we should be able to avoid these types of sudden failures in the future as well. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 60084ff9a..51bce7a95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - node + - lts/* cache: directories: - node_modules