From b09f97afef10c6c38a83b5ce12b92f3405df1555 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sun, 14 Dec 2025 12:02:32 +0100 Subject: [PATCH] feature: Add test step to CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added npm run test:run to GitHub Actions build workflow - Updated workflow name to reflect testing is included - Tests now run between lint and build steps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3977b61..1f0da28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build and Lint +name: Build, Test, and Lint on: push: @@ -8,8 +8,8 @@ on: workflow_dispatch: jobs: - build-and-lint: - name: Build and Lint + build-test-lint: + name: Build, Test, and Lint runs-on: ubuntu-latest steps: @@ -28,5 +28,8 @@ jobs: - name: Run linter run: npm run lint + - name: Run tests + run: npm run test:run + - name: Build application run: npm run build