From 30da27a17581a194329e0539e9b3194f4a004017 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Fri, 27 Mar 2026 22:58:49 -0700 Subject: [PATCH] ci: add backend lint step to Gitea CI --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index eae78aa..b0fee9c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,6 +28,9 @@ jobs: - name: Install workspace dependencies run: HUSKY=0 pnpm install + - name: Backend lint + run: pnpm --filter @chronomind/backend run lint + - name: Backend typecheck run: pnpm --filter @chronomind/backend run typecheck