Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/android-e2e-maestro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:

jobs:
e2e-tests:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# Run for manual/scheduled triggers, or only on a successful build when chained from the build workflow.
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest # Use ubuntu-latest for better Android emulator support
timeout-minutes: 30
strategy:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ios-e2e-maestro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
workflow_dispatch: # Allows you to trigger the workflow manually from the Actions tab
jobs:
e2e-tests:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# Run for manual/scheduled triggers, or only on a successful build when chained from the build workflow.
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
runs-on: macos-26 # iOS simulators require macOS runners
timeout-minutes: 45
strategy:
Expand Down
Loading