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

Commit

Permalink
chore: try causing e2e tests from workflow_run to call both the lates…
Browse files Browse the repository at this point in the history
…t and minimum supported vscode version
  • Loading branch information
daphne-sfdc committed Feb 8, 2024
1 parent d871ea9 commit f6ff9c9
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,39 @@ jobs:
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 }}

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 }}

0 comments on commit f6ff9c9

Please sign in to comment.