Skip to content

End to End Tests

End to End Tests #2

Workflow file for this run

name: End to End Tests
on:
schedule:
- cron: 52 * * * *
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' }

Check failure on line 38 in .github/workflows/e2e.yml

View workflow run for this annotation

GitHub Actions / End to End Tests

Invalid workflow file

The workflow is not valid. .github/workflows/e2e.yml (Line: 38, Col: 9): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
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 }}