Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

End to End Tests

End to End Tests #17

Workflow file for this run

name: End to End Tests
on:
workflow_run:
workflows:
- Nightly Build Develop
- Test, Build, and Release
types:
- completed
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
deployAndRetrieveE2ETests:
description: "Deploy and Retrieve E2E Tests"
required: false
default: true
type: boolean
lspE2ETests:
description: "LSP E2E Tests"
required: false
default: true
type: boolean
vscodeVersion:
description: "VSCode Version"
required: false
default: "1.85.2"
type: string
runId:
description: "Run ID of the workflow run that created the vsixes"
required: true
type: string
jobs:
Apex_E2E_tests:
if: ${{ inputs.apexE2ETests || github.event_name == 'workflow_run' }}
uses: ./.github/workflows/apexE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch || 'develop' }}
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId || github.event.workflow_run.id }}
Core_E2E_tests:
if: ${{ inputs.coreE2ETests || github.event_name == 'workflow_run' }}
uses: ./.github/workflows/coreE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch || 'develop' }}
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId || github.event.workflow_run.id }}
DeployAndRetrieve_E2E_tests:
if: ${{ inputs.deployAndRetrieveE2ETests || github.event_name == 'workflow_run' }}
uses: ./.github/workflows/deployRetrieveE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch || 'develop' }}
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId || github.event.workflow_run.id }}
LSP_E2E_tests:
if: ${{ inputs.lspE2ETests || github.event_name == 'workflow_run' }}
uses: ./.github/workflows/lspE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch || 'develop' }}
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId || github.event.workflow_run.id }}
# Apex_E2E_tests_min_vscode_version:
# if: ${{ github.event_name == 'workflow_run' }}
# uses: ./.github/workflows/apexE2E.yml
# secrets: inherit
# with:
# automationBranch: ${{ inputs.automationBranch || 'develop' }}
# vscodeVersion: ${{ '1.82.3' }}
# runId: ${{ inputs.runId || github.event.workflow_run.id }}

Check failure on line 91 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. In daphne-sfdc/salesforcedx-vscode-e2e-vscode-version/.github/workflows/apexE2E.yml@a49a101e0604784f60a9f64f5a09c5f07ebcf315 (Line: 91, Col: 11): Error from called workflow daphne-sfdc/salesforcedx-vscode-e2e-vscode-version/.github/workflows/runE2ETest.yml@a49a101e0604784f60a9f64f5a09c5f07ebcf315 (Line: 34, Col: 13): Unexpected symbol: '"'. Located at position 14 within expression: inputs.os || "[macos-latest, ubuntu-latest, windows-latest]" In daphne-sfdc/salesforcedx-vscode-e2e-vscode-version/.github/workflows/apexE2E.yml@a49a101e0604784f60a9f64f5a09c5f07ebcf315 (Line: 91, Col: 11): Error from called workflow daphne-sfdc/salesforcedx-vscode-e2e-vscode-version/.github/workflows/runE2ETest.yml@a49a101e0604784f60a9f64f5a09c5f07ebcf315 (Line: 34, Col: 13): Unexpected value '${{ inputs.os || "[macos-latest, ubuntu-latest, windows-latest]" }}'
# Core_E2E_tests_min_vscode_version:
# if: ${{ github.event_name == 'workflow_run' }}
# uses: ./.github/workflows/coreE2E.yml
# secrets: inherit
# with:
# automationBranch: ${{ inputs.automationBranch || 'develop' }}
# vscodeVersion: ${{ '1.82.3' }}
# runId: ${{ inputs.runId || github.event.workflow_run.id }}
# DeployAndRetrieve_E2E_tests_min_vscode_version:
# if: ${{ github.event_name == 'workflow_run' }}
# uses: ./.github/workflows/deployRetrieveE2E.yml
# secrets: inherit
# with:
# automationBranch: ${{ inputs.automationBranch || 'develop' }}
# vscodeVersion: ${{ '1.82.3' }}
# runId: ${{ inputs.runId || github.event.workflow_run.id }}
# LSP_E2E_tests_min_vscode_version:
# if: ${{ github.event_name == 'workflow_run' }}
# uses: ./.github/workflows/lspE2E.yml
# secrets: inherit
# with:
# automationBranch: ${{ inputs.automationBranch || 'develop' }}
# vscodeVersion: ${{ '1.82.3' }}
# runId: ${{ inputs.runId || github.event.workflow_run.id }}