Skip to content

Commit bde0f1c

Browse files
committed
Upload test report artifacts and dump container logs
1 parent 645ea8c commit bde0f1c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

+22
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,25 @@ jobs:
9393
npx tsc -p tsconfig.json --noEmit
9494
npx playwright install
9595
npx playwright test
96+
97+
- uses: actions/upload-artifact@v4
98+
if: ${{ !cancelled() }}
99+
with:
100+
name: playwright-report
101+
path: playwright-report/
102+
retention-days: 5
103+
104+
- name: Dump logs
105+
if: always()
106+
run: |
107+
echo "::group::Trino logs"
108+
docker logs trino
109+
echo "::endgroup::"
110+
111+
echo "::group::Keycloak logs"
112+
docker logs keycloak
113+
echo "::endgroup::"
114+
115+
echo "::group::Grafana logs"
116+
docker logs grafana
117+
echo "::endgroup::"

0 commit comments

Comments
 (0)