End to End Tests #5
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: 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 }} |