From ee767ef0f527c095f016b0bd07e8a93c4e9e3382 Mon Sep 17 00:00:00 2001 From: ANIRUDDHA ADAK Date: Fri, 25 Sep 2026 19:30:26 +0530 Subject: [PATCH] ci: type-check evals in CI Run the existing eval TypeScript project on the Ubuntu CI leg. The duplicate-run portion of #6 is intentionally unchanged because the current push trigger is already limited to main. Fixes #6 --- .github/workflows/non-windows.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/non-windows.yml b/.github/workflows/non-windows.yml index 7264f01..fed86f7 100644 --- a/.github/workflows/non-windows.yml +++ b/.github/workflows/non-windows.yml @@ -110,5 +110,9 @@ jobs: "const m = await import('get-windows'); if (typeof m.activeWindow !== 'function') throw new Error('get-windows activeWindow export is unavailable')" + - name: Type-check evals + if: runner.os == 'Linux' + run: npm run typecheck:evals + - run: npm test - run: npm run build