ci: run all UI tests on PR when AuthFlowTester changes#4089
Merged
wmathurin merged 1 commit intoJun 27, 2026
Merged
Conversation
If a PR modifies anything under native/SampleApps/AuthFlowTester/, TestOrchestrator emits run_all_ui_tests=true and the ui-tests-pr job passes an empty pr_test, causing the full suite to run instead of the single fixed smoke test.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #4089 +/- ##
==========================================
- Coverage 70.73% 66.71% -4.02%
==========================================
Files 246 246
Lines 21541 21541
==========================================
- Hits 15237 14372 -865
- Misses 6304 7169 +865
🚀 New features to boost your workflow:
|
|
||||||||||||||||||
brandonpage
approved these changes
Jun 27, 2026
bbirman
approved these changes
Jun 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
When a PR modifies anything under
native/SampleApps/AuthFlowTester/, the full UI suite runs instead of the single fixed smoke test.How it works:
TestOrchestrator.rbdetects changes undernative/SampleApps/AuthFlowTester/and emitsrun_all_ui_tests=truepr.yamlwires that output throughtest-orchestrator→ui-tests-prvia the newrun_all_ui_testsinputreusable-ui-test-workflow.yamladds arun_all_ui_testsboolean input:false(default): existing "Run UI tests" step runs withpr_testfilter (single smoke test)true: new "Run All UI Tests" step runs with no-only-testingfilter (full suite)This mirrors the equivalent change already merged on Android (#2941 + #2942).
Testing
Validated with
actionlint— no errors onpr.yamlandreusable-ui-test-workflow.yaml.Note:
pull_request_targetcannot be triggered within a personal fork (it only fires on cross-repo PRs), so live CI validation was not possible on the fork. Theactionlintclean pass is equivalent to the signal we had before merging the Android fix.