diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 491097a8..e45d2a22 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -42,6 +42,19 @@ jobs: env: TZ: Europe/Berlin + - name: Run coverage (server + client) + run: npm run test:coverage + working-directory: frontend + env: + TZ: Europe/Berlin + + - name: Upload coverage reports + if: always() + uses: actions/upload-artifact@v4 + with: + name: coverage-reports + path: frontend/coverage/ + - name: Build frontend run: npm run build working-directory: frontend