@Mobile • Test App End-2-End triggered by abdurrahman-ledger on ref support/qaa_312_detox_speculos_add_accounts #19941
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: "@Mobile • Test App End-2-End" | |
run-name: "@Mobile • Test App End-2-End triggered by ${{ inputs.login || github.actor }} ${{ format('on ref {0}', github.ref_name) }}" | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: | | |
If you run this manually, and want to run on a PR, the correct ref should be refs/pull/{PR_NUMBER}/merge to | |
have the "normal" scenario involving checking out a merge commit between your branch and the base branch. | |
If you want to run only on a branch or specific commit, you can use either the sha or the branch name instead (prefer the first verion for PRs). | |
login: | |
description: The GitHub username that triggered the workflow | |
required: false | |
base_ref: | |
description: The base branch to merge the head into when checking out the code | |
required: false | |
export_to_xray: | |
description: Send tests results to Xray | |
required: false | |
type: boolean | |
default: false | |
test_execution_android: | |
description: "[Android] Test Execution ticket ID. Ex: 'B2CQA-2461'" | |
required: false | |
type: string | |
test_execution_ios: | |
description: "[iOS] Test Execution ticket ID. Ex: 'B2CQA-2461'" | |
required: false | |
type: string | |
speculos_tests: | |
description: Run Speculos tests | |
required: false | |
type: boolean | |
default: false | |
slack_notif: | |
description: "Send notification to Slack?" | |
required: false | |
type: boolean | |
default: false | |
# Uncomment to have log-level: trace on detox run and build | |
# (cf: apps/ledger-live-mobile/detox.config.js) | |
# env: | |
# DEBUG_DETOX: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name != 'develop' && github.ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test-mobile-e2e: | |
name: "Test Mobile E2E" | |
uses: LedgerHQ/ledger-live/.github/workflows/test-mobile-e2e-reusable.yml@develop | |
secrets: inherit |