Skip to content

e2e All

e2e All #83

Workflow file for this run

name: Run e2e tests
on:
workflow_dispatch:
inputs:
IS_DEVELOPMENT:
type: choice
description: IS_DEVELOPMENT
options:
- false
- true
IS_SSS_ENABLED:
type: choice
description: IS_SSS_ENABLED
options:
- true
- false
jobs:
build_android:
name: Android
uses: ./.github/workflows/e2e_android.yml
secrets: inherit
with:
IS_DEVELOPMENT: ${{github.event.inputs.IS_DEVELOPMENT}}
IS_SSS_ENABLED: ${{github.event.inputs.IS_SSS_ENABLED}}
build_ios:
name: iOS
uses: ./.github/workflows/e2e_ios.yml
secrets: inherit
with:
IS_DEVELOPMENT: ${{github.event.inputs.IS_DEVELOPMENT}}
IS_SSS_ENABLED: ${{github.event.inputs.IS_SSS_ENABLED}}