From 97837dd278e7fdcbd9cc9c7c15326957724dbf4b Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Mar 2026 18:52:16 +0000 Subject: [PATCH] Check code coverage in `pr-checks.yml` --- .github/workflows/pr-checks.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index f24099703..ba2599dfd 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -54,7 +54,11 @@ jobs: - name: Run unit tests if: always() - run: npm test + run: npm run test-coverage + + - name: Check code coverage + if: always() + run: npm run coverage - name: Lint if: always() && matrix.os != 'windows-latest'