From 75cdad4d4f15098b0ee7318c8f2a3e50d23f6584 Mon Sep 17 00:00:00 2001 From: satnaing Date: Sat, 28 Dec 2024 12:59:16 +0700 Subject: [PATCH] build: add ci step to analyze project with knip --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 272ef254..0556b5bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,9 @@ jobs: - name: Lint the code run: pnpm lint + - name: Analyze unused files and dependencies + run: pnpm knip + - name: Run Prettier check run: pnpm format:check