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.
This commit is contained in:
parent
99abc2ec7b
commit
6626e7dc58
1 changed files with 4 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue