From 73c540e33834dc16c18a7f3adfd2e2f7cb22976b Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 11 May 2026 15:16:39 +0200 Subject: [PATCH] ci: drop redundant npm test step, coverage run covers it The test:coverage step runs the full suite under Istanbul; running `npm test` first executes every test twice for no extra signal. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e45d2a22..b07e377b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -36,13 +36,7 @@ jobs: run: npm run lint working-directory: frontend - - name: Run unit and component tests - run: npm test - working-directory: frontend - env: - TZ: Europe/Berlin - - - name: Run coverage (server + client) + - name: Run unit and component tests with coverage run: npm run test:coverage working-directory: frontend env: