From 9029098dea3c3802dbe43684a5fc324f67a59c0a Mon Sep 17 00:00:00 2001 From: Colin Rotherham Date: Thu, 18 Jan 2024 16:16:46 +0000 Subject: [PATCH] =?UTF-8?q?Check=20for=20unstaged=20changes=20during=20Git?= =?UTF-8?q?Hub=20Actions=20=E2=80=9CTest=E2=80=9D=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cfc62d9a..dae9179c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -39,6 +39,10 @@ jobs: - name: Functional tests (Chromium) run: npm run karma - # Run linter last so other tests run even if there is a code formatting error + # Run linter after tests to prevent failure due to code formatting error - name: Lint run: npm run standard + + # Run postbuild with check for unstaged changes + - name: Check for unstaged changes + run: npm run postbuild