Skip to content

Commit d49f720

Browse files
committed
Revert "downgrade Node on Windows"
This reverts commit 25b1874.
1 parent 25b1874 commit d49f720

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,6 @@ jobs:
553553
uses: ./.github/actions/setup-toolchain
554554
with:
555555
platform: windows
556-
node-version: "22.16"
557556
- name: Set up react-native@canary
558557
if: ${{ github.event_name == 'schedule' }}
559558
uses: ./.github/actions/setup-react-native
@@ -611,7 +610,6 @@ jobs:
611610
uses: ./.github/actions/setup-toolchain
612611
with:
613612
platform: windows
614-
node-version: "22.16"
615613
- name: Initialize test app
616614
uses: ./.github/actions/init-test-app
617615
with:

windows/app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export async function generateSolution(destPath, options, fs = nodefs) {
258258
const { msbuildprops, useHermes } = options;
259259
const { useExperimentalNuGet, useFabric, versionNumber } = info;
260260
const url = new URL(experimentalFeaturesPropsFilename, import.meta.url);
261-
copyAndReplaceAsync(fileURLToPath(url), experimentalFeaturesPropsPath, {
261+
await copyAndReplaceAsync(fileURLToPath(url), experimentalFeaturesPropsPath, {
262262
"<RnwNewArch>false</RnwNewArch>": `<RnwNewArch>${useFabric}</RnwNewArch>`,
263263
"<UseFabric>false</UseFabric>": `<UseFabric>${useFabric}</UseFabric>`,
264264
"<UseHermes>true</UseHermes>": `<UseHermes>${useHermes == null ? versionNumber >= v(0, 73, 0) : useHermes}</UseHermes>`,

0 commit comments

Comments
 (0)