feat(ci): enhance debugging in test workflow with workspace information
Tests / build-dev (push) Skipped
Tests / build-prod (push) Skipped
Tests / test (push) Skipped
Tests / build-dev (pull_request) Successful in 1m10s
Tests / test (pull_request) Failing after 29s
Tests / build-prod (pull_request) Successful in 3m23s

This commit is contained in:
2026-07-31 13:46:34 +02:00
parent 222c8aaa85
commit 30a2439914
+8
View File
@@ -78,9 +78,17 @@ jobs:
- name: Load dev image - name: Load dev image
run: docker load --input /tmp/graph-dev.tar run: docker load --input /tmp/graph-dev.tar
- name: Debug workspace
run: |
echo "pwd: $(pwd)"
echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
ls -la
- name: Run tests in dev image - name: Run tests in dev image
run: | run: |
docker run --rm -v "$(pwd)":/app -v /app/vendor graph-dev:ci sh -c " docker run --rm -v "$(pwd)":/app -v /app/vendor graph-dev:ci sh -c "
echo '--- /app contents ---' &&
ls -la /app &&
composer install --no-interaction && composer install --no-interaction &&
vendor/bin/phpunit --testdox && vendor/bin/phpunit --testdox &&
composer phpstan composer phpstan