From 02a6b73122546a27d053d8786f80c1a15c0b263f Mon Sep 17 00:00:00 2001 From: Jaime Baez Date: Thu, 8 Sep 2022 17:44:13 +0200 Subject: [PATCH] Add web-unit-test workflow to run in CI --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 66b0a94da1..60a379d8d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,3 +28,14 @@ jobs: - name: Run tests run: cd server && npm ci && npm run check:all + + web-unit-tests: + name: Run web unit test suites and checks + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run tests + run: cd web && npm ci && npm run check:all