Skip to content

Commit f539d96

Browse files
ASRagabclaude
authored andcommitted
ci: run check, lint:arch, lint:dead, and tests
CI previously ran only typecheck/lint/format and skipped both the electron compile (`npm run compile` is the closest thing to a build gate for main-process code) and the test suite. After the cycle fix and knip cleanup, the static gates are green, so wire them in: - `npm run check` — covers compile + typecheck + lint + format:check. - `npm run lint:arch` — depcruise enforcement, now green. - `npm run lint:dead` — knip, now green. - `npm test` — vitest run across renderer and main suites. Addresses finding 3 of issue #157. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent c8651a3 commit f539d96

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919

2020
- run: npm ci
2121

22-
- name: Typecheck
23-
run: npm run typecheck
22+
- name: Check (compile + typecheck + lint + format)
23+
run: npm run check
2424

25-
- name: Lint
26-
run: npm run lint
25+
- name: Lint (architecture)
26+
run: npm run lint:arch
2727

28-
- name: Format check
29-
run: npm run format:check
28+
- name: Lint (dead code)
29+
run: npm run lint:dead
30+
31+
- name: Test
32+
run: npm test

0 commit comments

Comments
 (0)