From 7069ac3dcf2ecd368e696581e3f453c9f50ca33c Mon Sep 17 00:00:00 2001 From: callumalpass Date: Sun, 5 Oct 2025 14:06:03 +1100 Subject: [PATCH] fix: Generate release notes import before typecheck in CI --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a76bc79f..19dbbf83 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,11 @@ jobs: - name: Run linter run: npm run lint || echo "Linting completed with warnings" timeout-minutes: 10 - + + - name: Generate release notes import + run: node generate-release-notes-import.mjs + timeout-minutes: 1 + - name: Run type check run: npm run typecheck timeout-minutes: 5