From 8be900eee337aa4937e227fe6b987246defadf6c Mon Sep 17 00:00:00 2001 From: Jakub Grzywacz Date: Fri, 25 Oct 2024 17:25:59 +0200 Subject: [PATCH] fix: iOS E2E action (#2510) # Summary `run-ios` script has been removed from `react-native@latest` so we shouldn't use that (and probably should migrate to @react-native-community/cli in the future) --- .github/workflows/e2e-ios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-ios.yml b/.github/workflows/e2e-ios.yml index 710b31d0..4b0b2e87 100644 --- a/.github/workflows/e2e-ios.yml +++ b/.github/workflows/e2e-ios.yml @@ -79,7 +79,7 @@ jobs: - name: Build app working-directory: apps/${{ matrix.working-directory }} - run: E2E=true npx react-native@latest run-ios --simulator="${{ env.DEVICE }}" --mode Debug --verbose + run: E2E=true npx react-native run-ios --simulator="${{ env.DEVICE }}" --mode Debug --verbose - name: Run e2e Tests run: E2E=true yarn e2e