Skip to content

Commit e92ae77

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Disable E2E Template tests on main
Summary: With the React revert from 19 to 18.3.1 of 0.75 the template is not compatible with main anymore. As a quick solution, we are disabling the e2e tests running on main. ## Changelog [Internal] - disable E2E template tests Reviewed By: cortinico Differential Revision: D60387687 fbshipit-source-id: 74d4133477bcfdc8ba5909b46d9180ac372ec6bb
1 parent 6aac1de commit e92ae77

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test-all.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ jobs:
215215
maestro-flow: ./packages/rn-tester/.maestro/
216216

217217
test_e2e_ios_templateapp:
218-
if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') }}
218+
# Template is not compatible with main anymore. We need to find a better strategy to test the template e2e
219+
# if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') }}
220+
if: ${{ contains(github.ref, 'stable') }}
219221
runs-on: macos-13
220222
needs: build_npm_package
221223
env:
@@ -282,7 +284,9 @@ jobs:
282284
maestro-flow: ./scripts/e2e/.maestro/
283285

284286
test_e2e_android_templateapp:
285-
if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') }}
287+
# Template is not compatible with main anymore. We need to find a better strategy to test the template e2e
288+
# if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') }}
289+
if: ${{ contains(github.ref, 'stable') }}
286290
runs-on: ubuntu-latest
287291
needs: build_npm_package
288292
continue-on-error: true

0 commit comments

Comments
 (0)