From da878a9d5824af3627d258cf5114418742d6f620 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 12 May 2022 22:44:03 +0200 Subject: [PATCH] Run unit tests per client/server project In order to use the appropriate setup for each one --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 42aa5dc..77f88cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,8 +24,10 @@ jobs: run: npm run compile - name: Lint Code run: npm run lint - - name: Run unit tests - run: npm test + - name: Run server unit tests + run: npm run test-unit-server + - name: Run client unit tests + run: npm run test-unit-client - name: Run integration tests run: xvfb-run -a npm run test:e2e if: runner.os == 'Linux'