Browse Source

Add web-unit-test workflow to run in CI

Jaime Baez 2 years ago
parent
commit
02a6b73122
1 changed files with 11 additions and 0 deletions
  1. 11 0
      .github/workflows/test.yml

+ 11 - 0
.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