chore: type improvements (#598)

* chore: type improvements

* ci: typechecking in pipeline
This commit is contained in:
Carlos Valente
2023-11-18 08:35:54 +01:00
committed by GitHub
parent 884ab0b67b
commit 2316bbebac
17 changed files with 84 additions and 34 deletions
+6 -6
View File
@@ -28,19 +28,19 @@ jobs:
run: pnpm install --frozen-lockfile
# Run code quality per package
- name: React - Run linter
- name: React - Run linter + TypeScript checks
if: always()
run: pnpm lint
run: pnpm lint && tsc --noEmit
working-directory: ./apps/client
- name: Server - Run linter
- name: Server - Run linter + TypeScript checks
if: always()
run: pnpm lint
run: pnpm lint && tsc --noEmit
working-directory: ./apps/server
- name: Utils - Run linter
- name: Utils - Run linter + TypeScript checks
if: always()
run: pnpm lint
run: pnpm lint && tsc --noEmit
working-directory: ./packages/utils
- name: Types - Run linter