From 1e336b7bb1abfb29651c63d1e6665dffa70caf4e Mon Sep 17 00:00:00 2001 From: banisterious Date: Tue, 12 May 2026 18:44:35 -0700 Subject: [PATCH] ci(release): run vitest between Lint and Build Phase 4 added a vitest characterization suite. Hook it into the release workflow so a failing test blocks the draft release alongside lint and build. Ordering matches the per-phase quality gates: Lint, Test, Build. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c15c21d..e8228fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,9 @@ jobs: - name: Lint (eslint) run: npm run lint + - name: Test (vitest) + run: npm test + - name: Build run: npm run build