From ca00173fea31cd99ea21d76f751e3de686a7eb9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Fri, 23 Oct 2020 12:42:10 -0700 Subject: [PATCH] Fix test_docker: Confirm envinfo package install during Docker container setup (#30235) Summary: With the release of Node 15 on October 20, 2020, the `nvm i node` command started installing Node 15 by default during the Docker setup step on Circle CI. This version of Node now requires user interaction down in `npx envinfo@latest` during the same step. With these changes, we ensure we automatically accept the installation of any necessary packages. ## Changelog [CATEGORY] - Internal Pull Request resolved: https://github.com/facebook/react-native/pull/30235 Test Plan: Circle CI. Reviewed By: fkgozali Differential Revision: D24510043 Pulled By: hramos fbshipit-source-id: bce72fd8ea8b0a4df501f75e48984eca0b10a090 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d6d762b6577..4cbbe6f11e7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -589,7 +589,7 @@ jobs: source ~/.bashrc nvm i node npm i -g yarn - npx envinfo@latest + echo y | npx envinfo@latest yarn run docker-setup-android yarn run docker-build-android