From bd81e67f761ba32b9151592c7e28e2451e844e4e Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 2 Apr 2020 09:41:29 -0700 Subject: [PATCH] Bump Travis Node to 12 (#961) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Looks like jsdom for jest wants either 10 or 12, but not 11. ¯\_(ツ)_/¯ Pull Request resolved: https://github.com/facebook/flipper/pull/961 Test Plan: Watch Travis signal. Reviewed By: cekkaewnumchai Differential Revision: D20815326 Pulled By: passy fbshipit-source-id: 6b7a8ddda75299443853d8bdca56fe1ce3d60afe --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d74bd91e2..321143997 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ matrix: - language: node_js os: linux node_js: - - "11" + - "12" install: - cd website @@ -30,13 +30,13 @@ matrix: - language: node_js os: linux node_js: - - "11" + - "12" install: - cd desktop - yarn - script: + script: - yarn lint - yarn test - yarn build --linux --version=$TRAVIS_BUILD_NUMBER