From 6626e7dc58d907dfda3557d2e3fde118f3244521 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Thu, 10 Jul 2025 12:07:00 -0400 Subject: [PATCH] Improves debug output in CI workflow Enhances debugging capabilities in the CI workflow by adding `ls -al` command to print the contents of the playwright-tests directory. Also, corrects the path for listing test results to use a relative path instead of an absolute path, ensuring it works correctly regardless of the environment. --- temp/playwright-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/temp/playwright-test.yml b/temp/playwright-test.yml index fff423060..c3732eda2 100644 --- a/temp/playwright-test.yml +++ b/temp/playwright-test.yml @@ -250,11 +250,14 @@ jobs: echo "📂 Contents of current directory:" ls -al + echo "📂 Contents of playwright-tests directory:" + ls -al $PLAYWRIGHT_PATH + echo "📂 Contents of ./ortoni-report (if exists):" ls -al ./ortoni-report || echo "No ortoni-report directory found" echo "📂 Contents of /app/test-results (if mounted later):" - ls -al /app/playwright-tests/test-results || echo "No /app/test-results directory found" + ls -al ./test-results || echo "No /app/test-results directory found" container_id=$(docker create \ --ipc=host \