From d0e8cd4c573a6588f8ce5e544f92f748c9a7ab81 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Wed, 9 Jul 2025 14:43:18 -0400 Subject: [PATCH] Adds filter value to workflow output Adds the filter value to the workflow output, providing more visibility into the test selection process during CI runs. This helps in debugging and verifying the correct test subset is being executed. --- temp/playwright-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/temp/playwright-test.yml b/temp/playwright-test.yml index 903834dad..394c7b4ef 100644 --- a/temp/playwright-test.yml +++ b/temp/playwright-test.yml @@ -138,6 +138,7 @@ jobs: echo "No filter. Running all test cases..." FILTER="" fi + echo "Filter value: $FILTER" echo "Line 142 targetUrl: ${{ parameters.targetUrl }}" TARGET_URL=${{ parameters.targetUrl }}