From 55341dfc5924c116ed5ea876d6b010bd9db21769 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 23 Mar 2021 10:56:02 -0700 Subject: [PATCH] Fix React Native build (#2100) Summary: Currently failing because the 0.64.x build requires Node >= 0.12 Pull Request resolved: https://github.com/facebook/flipper/pull/2100 Test Plan: CI Reviewed By: mweststrate Differential Revision: D27265576 Pulled By: passy fbshipit-source-id: d7ee0cac8bab1dc90a1b453eef6a7be30177052e --- .github/workflows/react-native-example.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/react-native-example.yml b/.github/workflows/react-native-example.yml index ccf287495..b123b33af 100644 --- a/.github/workflows/react-native-example.yml +++ b/.github/workflows/react-native-example.yml @@ -8,7 +8,9 @@ jobs: working-directory: react-native/ReactNativeFlipperExample steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2.1.5 + with: + node-version: 12.x - uses: maxim-lobanov/setup-cocoapods@v1 with: # Path to Podfile.lock file to determine Cocoapods version @@ -33,7 +35,9 @@ jobs: working-directory: react-native/ReactNativeFlipperExample steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2.1.5 + with: + node-version: 12.x - name: set up JDK 1.8 uses: actions/setup-java@v1 with: