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

Commit

Permalink
chore: change double quotes back to single quotes in remaining E2E YA…
Browse files Browse the repository at this point in the history
…ML files
  • Loading branch information
daphne-sfdc committed Feb 14, 2024
1 parent c1c78fb commit e59c18b
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 77 deletions.
74 changes: 37 additions & 37 deletions .github/workflows/apexE2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,84 +4,84 @@ on:
workflow_dispatch:
inputs:
automationBranch:
description: "Set the branch to use for automation tests"
description: 'Set the branch to use for automation tests'
required: false
default: "develop"
default: 'develop'
type: string
apexLsp:
description: "Apex LSP"
description: 'Apex LSP'
required: false
default: true
type: boolean
apexReplayDebugger:
description: "Apex Replay Debugger"
description: 'Apex Replay Debugger'
required: false
default: true
type: boolean
debugApexTests:
description: "Debug Apex Tests"
description: 'Debug Apex Tests'
required: false
default: true
type: boolean
runApexTests:
description: "Run Apex Tests"
description: 'Run Apex Tests'
required: false
default: true
type: boolean
trailApexReplayDebugger:
description: "Trail Apex Replay Debugger"
description: 'Trail Apex Replay Debugger'
required: false
default: true
type: boolean
vscodeVersion:
description: "VSCode Version"
description: 'VSCode Version'
required: false
default: "1.85.2"
default: '1.85.2'
type: string
runId:
description: "Run ID of the workflow run that created the vsixes"
description: 'Run ID of the workflow run that created the vsixes'
required: true
type: string

workflow_call:
inputs:
automationBranch:
description: "Set the branch to use for automation tests"
description: 'Set the branch to use for automation tests'
required: false
default: "develop"
default: 'develop'
type: string
apexLsp:
description: "Apex LSP"
description: 'Apex LSP'
required: false
default: true
type: boolean
apexReplayDebugger:
description: "Apex Replay Debugger"
description: 'Apex Replay Debugger'
required: false
default: true
type: boolean
debugApexTests:
description: "Debug Apex Tests"
description: 'Debug Apex Tests'
required: false
default: true
type: boolean
runApexTests:
description: "Run Apex Tests"
description: 'Run Apex Tests'
required: false
default: true
type: boolean
trailApexReplayDebugger:
description: "Trail Apex Replay Debugger"
description: 'Trail Apex Replay Debugger'
required: false
default: true
type: boolean
vscodeVersion:
description: "VSCode Version"
description: 'VSCode Version'
required: false
default: "1.85.2"
default: '1.85.2'
type: string
runId:
description: "Run ID of the workflow run that created the vsixes"
description: 'Run ID of the workflow run that created the vsixes'
required: true
type: string

Expand All @@ -92,7 +92,7 @@ jobs:
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: "apexLsp.e2e.ts"
testToRun: 'apexLsp.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId }}

Expand All @@ -102,7 +102,7 @@ jobs:
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: "apexReplayDebugger.e2e.ts"
testToRun: 'apexReplayDebugger.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId }}

Expand All @@ -112,7 +112,7 @@ jobs:
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: "debugApexTests.e2e.ts"
testToRun: 'debugApexTests.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId }}

Expand All @@ -122,7 +122,7 @@ jobs:
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: "runApexTests.e2e.ts"
testToRun: 'runApexTests.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId }}

Expand All @@ -132,7 +132,7 @@ jobs:
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
testToRun: "trailApexReplayDebugger.e2e.ts"
testToRun: 'trailApexReplayDebugger.e2e.ts'
vscodeVersion: ${{ inputs.vscodeVersion || '1.85.2' }}
runId: ${{ inputs.runId }}

Expand All @@ -149,12 +149,12 @@ jobs:
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
with:
title: "Apex E2E Tests"
title: 'Apex E2E Tests'
testsBranch: ${{ inputs.automationBranch }}
summary: '\n- Apex LSP: ${{ needs.apexLSP.result }}\n- Apex Replay Debugger: ${{ needs.apexReplayDebugger.result }}\n- Debug Apex Tests: ${{ needs.debugApexTests.result }}\n- Run Apex Tests: ${{ needs.runApexTests.result }}\n- Trail Apex Replay Debugger: ${{ needs.trailApexReplayDebugger.result }}'
result: "All the tests passed."
workflow: "actions/runs/${{ github.run_id }}"
type: "e2e"
result: 'All the tests passed.'
workflow: 'actions/runs/${{ github.run_id }}'
type: 'e2e'

slack_failure_notification:
if: ${{ failure() }}
Expand All @@ -169,12 +169,12 @@ jobs:
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
with:
title: "Apex E2E Tests"
title: 'Apex E2E Tests'
testsBranch: ${{ inputs.automationBranch }}
summary: '\n- Apex LSP: ${{ needs.apexLSP.result }}\n- Apex Replay Debugger: ${{ needs.apexReplayDebugger.result }}\n- Debug Apex Tests: ${{ needs.debugApexTests.result }}\n- Run Apex Tests: ${{ needs.runApexTests.result }}\n- Trail Apex Replay Debugger: ${{ needs.trailApexReplayDebugger.result }}'
result: "Not all the tests passed."
workflow: "actions/runs/${{ github.run_id }}"
type: "e2e"
result: 'Not all the tests passed.'
workflow: 'actions/runs/${{ github.run_id }}'
type: 'e2e'

slack_cancelled_notification:
if: ${{ cancelled() }}
Expand All @@ -189,9 +189,9 @@ jobs:
uses: ./.github/workflows/slackNotification.yml
secrets: inherit
with:
title: "Apex E2E Tests"
title: 'Apex E2E Tests'
testsBranch: ${{ inputs.automationBranch }}
summary: '\n- Apex LSP: ${{ needs.apexLSP.result }}\n- Apex Replay Debugger: ${{ needs.apexReplayDebugger.result }}\n- Debug Apex Tests: ${{ needs.debugApexTests.result }}\n- Run Apex Tests: ${{ needs.runApexTests.result }}\n- Trail Apex Replay Debugger: ${{ needs.trailApexReplayDebugger.result }}'
result: "The workflow was cancelled."
workflow: "actions/runs/${{ github.run_id }}"
type: "e2e"
result: 'The workflow was cancelled.'
workflow: 'actions/runs/${{ github.run_id }}'
type: 'e2e'
18 changes: 9 additions & 9 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,37 @@ on:
workflow_dispatch:
inputs:
automationBranch:
description: "Set the branch to use for automation tests"
description: 'Set the branch to use for automation tests'
required: false
default: "develop"
default: 'develop'
type: string
apexE2ETests:
description: "Apex E2E Tests"
description: 'Apex E2E Tests'
required: false
default: true
type: boolean
coreE2ETests:
description: "Core E2E Tests"
description: 'Core E2E Tests'
required: false
default: true
type: boolean
deployAndRetrieveE2ETests:
description: "Deploy and Retrieve E2E Tests"
description: 'Deploy and Retrieve E2E Tests'
required: false
default: true
type: boolean
lspE2ETests:
description: "LSP E2E Tests"
description: 'LSP E2E Tests'
required: false
default: true
type: boolean
vscodeVersion:
description: "VSCode Version"
description: 'VSCode Version'
required: false
default: "1.85.2"
default: '1.85.2'
type: string
runId:
description: "Run ID of the workflow run that created the vsixes"
description: 'Run ID of the workflow run that created the vsixes'
required: true
type: string

Expand Down
Loading

0 comments on commit e59c18b

Please sign in to comment.