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

Commit

Permalink
chore: add default OS for baseSuiteE2E when called from Nightly Build…
Browse files Browse the repository at this point in the history
… Develop
  • Loading branch information
daphne-sfdc committed Feb 14, 2024
1 parent 6cac8f1 commit aa1a409
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/baseSuiteE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
testToRun: "anInitialSuite.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

authentication:
if: ${{ inputs.authentication || github.event_name == 'workflow_run' }}
Expand All @@ -133,7 +133,7 @@ jobs:
testToRun: "authentication.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

templates:
if: ${{ inputs.templates || github.event_name == 'workflow_run' }}
Expand All @@ -144,7 +144,7 @@ jobs:
testToRun: "templates.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

deployAndRetrieve:
if: ${{ inputs.deployAndRetrieve || github.event_name == 'workflow_run' }}
Expand All @@ -155,7 +155,7 @@ jobs:
testToRun: "deployAndRetrieve.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

apexLSP:
if: ${{ inputs.apexLsp || github.event_name == 'workflow_run' }}
Expand All @@ -166,7 +166,7 @@ jobs:
testToRun: "apexLsp.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

runApexTests:
if: ${{ inputs.runApexTests || github.event_name == 'workflow_run' }}
Expand All @@ -177,4 +177,4 @@ jobs:
testToRun: "runApexTests.e2e.ts"
vscodeVersion: ${{ inputs.vscodeVersion || '1.82.3' }}
runId: ${{ inputs.runId }}
os: ${{ inputs.os }}
os: ${{ inputs.os || '["ubuntu-latest"]' }}

0 comments on commit aa1a409

Please sign in to comment.