From af1fc87b54686d5e15204cd588e2227a92ae40ac Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Thu, 7 Dec 2023 17:08:52 -0500 Subject: [PATCH] [meta] copy ReactAllWarnings.js file (#27811) I recently added generation of this file in #27786, which builds the file in CircleCI, but missed actually copying it to the facebook build on GitHub Actions. This adds the later. --- .github/workflows/commit_artifacts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commit_artifacts.yml b/.github/workflows/commit_artifacts.yml index 2e5007982b1cb..86c6e70bf2341 100644 --- a/.github/workflows/commit_artifacts.yml +++ b/.github/workflows/commit_artifacts.yml @@ -120,7 +120,7 @@ jobs: - name: Move relevant files for React in www into compiled run: | mkdir -p ./compiled - mkdir -p ./compiled/facebook-www + mkdir -p ./compiled/facebook-www/__test_utils__ mkdir -p ./compiled/babel-plugin-react-refresh # Copy the facebook-www folder into compiled @@ -128,6 +128,7 @@ jobs: # Copy WARNINGS to facebook-www mv build/WARNINGS ./compiled/facebook-www/WARNINGS + mv build/__test_utils__/ReactAllWarnings.js ./compiled/facebook-www/__test_utils__/ReactAllWarnings.js # Copy eslint-plugin-react-hooks into facebook-www mv build/oss-experimental/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js \