We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 645ea8c commit bde0f1cCopy full SHA for bde0f1c
.github/workflows/ci.yml
@@ -93,3 +93,25 @@ jobs:
93
npx tsc -p tsconfig.json --noEmit
94
npx playwright install
95
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
114
115
+ echo "::group::Grafana logs"
116
+ docker logs grafana
117
0 commit comments