test loop #353
This file contains 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
name: Detox E2E Tests | |
on: | |
schedule: | |
- cron: '0 0 * * *' # every day at midnight | |
push: | |
branches: | |
- 'release-*' | |
- 'add_e2e_android' | |
pull_request: | |
branches: | |
- 'main' | |
types: | |
- labeled | |
workflow_dispatch: | |
inputs: | |
ios_version: | |
description: 'Choose iOS version' | |
required: false | |
default: "iOS 17.4" | |
type: choice | |
options: | |
- "iOS 17.5" | |
- "iOS 17.4" | |
- "iOS 17.2" | |
- "iOS 17.0" | |
ios_device_name: | |
description: 'Choose iOS Device Name' | |
required: false | |
default: "iPhone 15 Pro" | |
type: choice | |
options: | |
- "iPhone 15 Pro" | |
- "iPhone 15" | |
- "iPhone 14 Pro" | |
- "iPhone 14" | |
android_api_level: | |
description: 'Choose Android API Level' | |
required: true | |
default: '29' | |
type: choice | |
options: | |
- '29' | |
- '30' | |
- '31' | |
android_device: | |
description: 'Choose Android Device Type' | |
required: true | |
default: 'Pixel_3' | |
type: choice | |
options: | |
- 'Pixel_3' | |
- 'Pixel_4' | |
jobs: | |
run-ios-tests-on-pr: | |
name: iOS Mobile Tests on PR | |
uses: ./.github/workflows/e2e-detox-ios-template.yml | |
if: ${{ | |
( | |
github.event_name == 'pull_request' && | |
github.event.pull_request.labels && | |
contains(github.event.pull_request.labels.*.name, 'E2E iOS tests for PR') | |
) | |
}} | |
with: | |
remove-pr-label: true | |
commit_sha: "${{ github.event.pull_request.head.sha || github.sha }}" | |
status_check_context: "Detox iOS Mobile Tests on PR" | |
run-type: 'PR' | |
secrets: inherit | |
run-ios-tests-on-release: | |
name: iOS Mobile Tests on Release | |
uses: ./.github/workflows/e2e-detox-ios-template.yml | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release-') }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox iOS Mobile Tests on Release" | |
run-type: 'RELEASE' | |
secrets: inherit | |
run-ios-tests-on-main-scheduled: | |
name: iOS Mobile Tests on Main (Scheduled) | |
uses: ./.github/workflows/e2e-detox-ios-template.yml | |
if: ${{ github.event_name == 'schedule' && github.ref == 'refs/heads/main' }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox iOS Mobile Tests on Main (Scheduled)" | |
run-type: 'MAIN' | |
secrets: inherit | |
run-ios-tests-on-manual-trigger: | |
name: iOS Mobile Tests on Manual Trigger | |
uses: ./.github/workflows/e2e-detox-ios-template.yml | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox iOS Mobile Tests on Manual Trigger" | |
run-type: 'MANUAL' | |
secrets: inherit | |
run-android-tests-on-pr: | |
name: Android Mobile Tests on PR | |
uses: ./.github/workflows/e2e-detox-android-template.yml | |
if: ${{ | |
( | |
github.event_name == 'pull_request' && | |
github.event.pull_request.labels && | |
contains(github.event.pull_request.labels.*.name, 'E2E Android tests for PR') | |
) | |
}} | |
with: | |
remove-pr-label: true | |
commit_sha: "${{ github.event.pull_request.head.sha || github.sha }}" | |
status_check_context: "Detox Android Mobile Tests on PR" | |
run-type: 'PR' | |
secrets: inherit | |
run-android-tests-on-release: | |
name: Android Mobile Tests on Release | |
uses: ./.github/workflows/e2e-detox-android-template.yml | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/add_e2e_android') }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox Android Mobile Tests on Release" | |
run-type: 'RELEASE' | |
secrets: inherit | |
run-android-tests-on-main-scheduled: | |
name: Android Mobile Tests on Main (Scheduled) | |
uses: ./.github/workflows/e2e-detox-android-template.yml | |
if: ${{ github.event_name == 'schedule' && github.ref == 'refs/heads/main' }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox Android Mobile Tests on Main (Scheduled)" | |
run-type: 'MAIN' | |
secrets: inherit | |
run-android-tests-on-manual-trigger: | |
name: Android Mobile Tests on Manual Trigger | |
uses: ./.github/workflows/e2e-detox-android-template.yml | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
with: | |
remove-pr-label: false | |
commit_sha: "${{ github.sha }}" | |
status_check_context: "Detox Android Mobile Tests on Manual Trigger" | |
run-type: 'MANUAL' | |
secrets: inherit |