From bbcafbbffe199bb2e056f026c3b6a399502fe98d Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Mon, 4 Aug 2025 03:33:14 -0700 Subject: [PATCH] Pin Node.js version in GitHub Actions to 24.4.1 (#53013) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53013 Quick fix to restore CI on `main`. `actions/setup-node` is now pulling Node.js `24.5.0`, which introduces a bug affecting `packages/dev-middleware/src/__tests__/` Jest tests. Changelog: [Internal] Reviewed By: cipolleschi Differential Revision: D79551277 fbshipit-source-id: 51951ad8ffe376a478da268b50aa54ac2d9bba03 --- .github/workflows/test-all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 753ea96c593..649d0fff88b 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -592,7 +592,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: ["24", "22", "20.19.4"] + node-version: ["24.4.1", "22", "20.19.4"] steps: - name: Checkout uses: actions/checkout@v4