From 9fee53fb1470973445a10a79f4c4cdd5460b0325 Mon Sep 17 00:00:00 2001 From: Mario Vitale Date: Thu, 31 Oct 2024 04:17:00 +0100 Subject: [PATCH] E2E fix: use string for cypress/playwright selector (#29020) --- .github/workflows/e2e-fulltests-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/e2e-fulltests-ci.yml b/.github/workflows/e2e-fulltests-ci.yml index 19e40dbc81..b20cfa3ad0 100644 --- a/.github/workflows/e2e-fulltests-ci.yml +++ b/.github/workflows/e2e-fulltests-ci.yml @@ -39,13 +39,13 @@ on: - NONE default: NONE RUN_CYPRESS: - type: boolean + type: string description: Enable Cypress run - default: true + default: "true" RUN_PLAYWRIGHT: - type: boolean + type: string description: Enable Playwright run - default: true + default: "true" concurrency: group: "${{ github.workflow }}-${{ inputs.REPORT_TYPE }}-${{ inputs.PR_NUMBER || inputs.ref }}-${{ inputs.MM_ENV }}" @@ -219,8 +219,8 @@ jobs: STATUS_CHECK_CONTEXT: "${{steps.generate.outputs.status_check_context}}" WORKFLOW_RUN_URL: "${{steps.generate.outputs.WORKFLOW_RUN_URL}}" CYCLE_URL: "${{steps.generate.outputs.CYCLE_URL}}" - RUN_CYPRESS: "${{inputs.RUN_CYPRESS || ''}}" - RUN_PLAYWRIGHT: "${{inputs.RUN_PLAYWRIGHT || ''}}" + RUN_CYPRESS: "${{inputs.RUN_CYPRESS == 'true' || ''}}" + RUN_PLAYWRIGHT: "${{inputs.RUN_PLAYWRIGHT == 'true' || ''}}" run: | if [ -n "$PR_NUMBER" ]; then gh issue -R "${{ github.repository }}" comment "$PR_NUMBER" --body-file - <