Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add sfdx-project.json E2E test to Core End to End Tests #5680

Merged
merged 8 commits into from
Aug 6, 2024
Merged
20 changes: 20 additions & 0 deletions .github/workflows/coreE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ on:
required: false
default: true
type: boolean
sfdxProjectJson:
description: 'sfdx-project.json'
required: false
default: true
type: boolean
vscodeVersion:
description: 'VSCode Version'
required: false
Expand Down Expand Up @@ -75,6 +80,11 @@ on:
required: false
default: true
type: boolean
sfdxProjectJson:
description: 'sfdx-project.json'
required: false
default: true
type: boolean
vscodeVersion:
description: 'VSCode Version'
required: false
Expand Down Expand Up @@ -136,6 +146,16 @@ jobs:
vscodeVersion: ${{ inputs.vscodeVersion }}
runId: ${{ inputs.runId }}

sfdxProjectJson:
if: ${{ inputs.sfdxProjectJson }}
uses: ./.github/workflows/runE2ETest.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: 'sfdxProjectJson.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion }}
runId: ${{ inputs.runId }}

slack_success_notification:
if: ${{ success() }}
needs:
Expand Down
Loading