Skip to content

End to End Tests

End to End Tests #5

Workflow file for this run

name: End to End Tests
on:
schedule:
- cron: 25 * * * *
workflow_dispatch:
inputs:
automationBranch:
description: 'Set the branch to use for automation tests'
required: false
default: 'develop'
type: string
apexE2ETests:
description: 'Apex E2E Tests'
required: false
default: true
type: boolean
coreE2ETests:
description: 'Core E2E Tests'
required: false
default: true
type: boolean
lspE2ETests:
description: 'LSP E2E Tests'
required: false
default: true
type: boolean
jobs:
Apex_E2E_tests:
if: ${{ github.event.inputs.apexE2ETests || github.event_name == 'schedule' }}
uses: ./.github/workflows/apexE2E.yml
secrets: inherit
with:
automationBranch: ${{ github.event.inputs.automationBranch }}
Core_E2E_tests:
if: ${{ github.event.inputs.coreE2ETests || github.event_name == 'schedule' }}
uses: ./.github/workflows/coreE2E.yml
secrets: inherit
with:
automationBranch: ${{ github.event.inputs.automationBranch }}
LSP_E2E_tests:
if: ${{ github.event.inputs.lspE2ETests || github.event_name == 'schedule' }}
uses: ./.github/workflows/lspE2E.yml
secrets: inherit
with:
automationBranch: ${{ github.event.inputs.automationBranch }}