From 40539874717cc64350ee7ee7bb67d8c629b7f942 Mon Sep 17 00:00:00 2001 From: eps1lon Date: Tue, 27 Oct 2020 17:05:26 +0100 Subject: [PATCH 1/5] test: Run with node 15 --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index eae48ee7..1a52c85b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,15 @@ node_js: - 10.14.2 - 12 - 14 + - 15 - node env: - REACT_DIST=latest - REACT_DIST=next - REACT_DIST=experimental + # node15 compat + # Revisit once https://github.com/npm/cli/pull/2047 is released. + - npm_config_yes=true install: - npm install # as requested by the React team :) From 70c10d5609402e4eab66a6ec41dbcc25de033926 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Tue, 27 Oct 2020 20:43:33 +0100 Subject: [PATCH 2/5] don't run with node15 --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1a52c85b..a3fd3618 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,15 +7,10 @@ node_js: - 10.14.2 - 12 - 14 - - 15 - - node env: - REACT_DIST=latest - REACT_DIST=next - REACT_DIST=experimental - # node15 compat - # Revisit once https://github.com/npm/cli/pull/2047 is released. - - npm_config_yes=true install: - npm install # as requested by the React team :) From 4ecb1ab93e9a049d35c496c66cb506b70d45e252 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Tue, 27 Oct 2020 21:10:01 +0100 Subject: [PATCH 3/5] run with node15, again --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index a3fd3618..61c99a17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,14 @@ node_js: - 10.14.2 - 12 - 14 + - 15 +env: + - REACT_DIST=latest + - REACT_DIST=next + - REACT_DIST=experimental + # node15 compat + # Revisit once https://github.com/npm/cli/pull/2047 is released. + - npm_config_yes=true env: - REACT_DIST=latest - REACT_DIST=next From 960793aaddbcad9877bb7b09bd6d5bb5dad8632e Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Wed, 28 Oct 2020 12:12:00 +0100 Subject: [PATCH 4/5] Update .travis.yml --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61c99a17..914173b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,13 +8,6 @@ node_js: - 12 - 14 - 15 -env: - - REACT_DIST=latest - - REACT_DIST=next - - REACT_DIST=experimental - # node15 compat - # Revisit once https://github.com/npm/cli/pull/2047 is released. - - npm_config_yes=true env: - REACT_DIST=latest - REACT_DIST=next From 85bf40d9952023463098cb37c1f000280d155d6c Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Thu, 29 Oct 2020 10:37:39 +0100 Subject: [PATCH 5/5] Run with npm@>=7.0.6 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 914173b3..fbe104b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,9 @@ env: - REACT_DIST=next - REACT_DIST=experimental install: + # 7.0.6 fixed CI environments prompting user input. + # Can be removed once node15 bumps the shipped npm version. + - npm install --global npm@>=7.0.6 - npm install # as requested by the React team :) # https://reactjs.org/blog/2019/10/22/react-release-channels.html#using-the-next-channel-for-integration-testing