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'