From 60a27099990ae722e934be38e8074b5ebb580457 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 27 Feb 2026 18:08:54 +0100 Subject: [PATCH] ci: add depcheck step to nightly qa template --- .gitea/workflows/quality-assurance-template.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/quality-assurance-template.yml b/.gitea/workflows/quality-assurance-template.yml index 8996f0f..93c9c80 100644 --- a/.gitea/workflows/quality-assurance-template.yml +++ b/.gitea/workflows/quality-assurance-template.yml @@ -104,6 +104,11 @@ jobs: GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD }} run: pnpm run check:wcag + - name: 📦 Unused Dependencies Scan (depcheck) + if: always() + continue-on-error: true + run: pnpm dlx depcheck --ignores="*eslint*,*typescript*,*tailwindcss*,*postcss*,*prettier*,*@types/*,*husky*,*lint-staged*,*@next/*,*@lhci/*,*commitlint*,*cspell*,*rimraf*,*@payloadcms/*,*start-server-and-test*,*html-validate*,*critters*,*dotenv*,*turbo*" + - name: 🔗 Markdown & HTML Link Check (Lychee) if: always() uses: lycheeverse/lychee-action@v2