From b1a32512ab22339bd10cdd163b3ba55bfb37872b Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Sun, 26 Apr 2026 21:15:28 +0530 Subject: [PATCH] ci: output backend logs to the console --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c60305..348f271 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,3 +145,7 @@ jobs: name: playwright-report path: frontend/playwright-report/ retention-days: 10 + + - name: Print Backend Logs on Failure + if: failure() + run: cat tmp/logs/backend.log || true