From 4a2ff8aa22e151e6d46115960d36d77f0bfe251a Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 19 May 2026 21:42:33 +0700 Subject: [PATCH] 690519:2142 224 to 226 AI #04 --- .gitea/workflows/ci-deploy.yml | 3 ++- backend/package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-deploy.yml b/.gitea/workflows/ci-deploy.yml index 8c1a1928..da7a1e0a 100644 --- a/.gitea/workflows/ci-deploy.yml +++ b/.gitea/workflows/ci-deploy.yml @@ -36,7 +36,8 @@ jobs: run: pnpm install --frozen-lockfile - name: ๐Ÿงน Lint - run: pnpm lint + run: pnpm --filter backend lint:ci + working-directory: . - name: ๐Ÿ” Security & quality checks run: | diff --git a/backend/package.json b/backend/package.json index 2e5c8fc7..4dc9eb19 100644 --- a/backend/package.json +++ b/backend/package.json @@ -19,6 +19,7 @@ "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", + "lint:ci": "node --max-old-space-size=4096 node_modules/.bin/eslint \"{src,apps,libs,test}/**/*.ts\"", "test": "jest --config jest.config.js --forceExit", "test:debug-handles": "jest --config jest.config.js --detectOpenHandles", "test:watch": "jest --config jest.config.js --watch",