diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b2b6721..db2343e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,9 +26,10 @@ jobs: - name: Lint run: pnpm lint - - name: Type check - run: pnpm exec tsc --noEmit - + # `next build` runs its own full TypeScript check as part of the + # build - a separate `tsc --noEmit` here would fail on a clean + # checkout anyway, since it needs .next/types (generated by this + # same build) for Next's own ambient types like LayoutProps. - name: Build run: pnpm build