From ac999066dd90384fb9bc3cc7920913a837d952ab Mon Sep 17 00:00:00 2001 From: Marcel Date: Sat, 9 May 2026 16:00:03 +0200 Subject: [PATCH] fix(ci): add TZ=Europe/Berlin to frontend test step date-buckets.spec.ts midnight tests pass timezone-aware dates (+02:00) which are 22:00 UTC the prior day; setHours(0,0,0,0) uses local TZ. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9ab8d3e5..6db53614 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -39,6 +39,8 @@ jobs: - name: Run unit and component tests run: npm test working-directory: frontend + env: + TZ: Europe/Berlin - name: Build frontend run: npm run build