Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ jobs:
- name: Install dependencies
run: yarn install --immutable

- name: Build internal packages
run: yarn ci build_pkgs

- name: Build SDK packages
run: yarn ci build_sdk

- name: Build CS packages
run: yarn ci build_cs

- name: Run typecheck
run: yarn ci typecheck

Expand Down
2 changes: 2 additions & 0 deletions internals/ci/src/cmds/typecheck/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ export async function typeCheck(..._args: any[]) {
for (let idx = 0; idx < workers.length; idx += 1) {
workers[idx].terminate();
}

process.exit(1);
}
}

Expand Down