ci: add lint steps to Gitea CI for backend + web

This commit is contained in:
saravanakumardb1 2026-03-27 22:59:50 -07:00
parent 0f56b12f3c
commit f9cb3a323d

View File

@ -27,6 +27,9 @@ jobs:
- name: Install workspace dependencies
run: HUSKY=0 pnpm install --frozen-lockfile
- name: Backend lint
run: pnpm --filter @notelett/backend run lint
- name: Backend typecheck
run: pnpm --filter @notelett/backend run typecheck
@ -50,6 +53,9 @@ jobs:
- name: Install workspace dependencies
run: HUSKY=0 pnpm install --frozen-lockfile
- name: Web lint
run: pnpm --filter @notelett/web run lint
- name: Web typecheck
run: pnpm --filter @notelett/web run typecheck