From a8d873f9f89cd410c1130d6ebf16b68a3953fdf5 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 4 Oct 2021 12:07:45 -0700 Subject: [PATCH] refactor(ci): fix unit tests job --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b4cfc9f1..497203af 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,6 +54,10 @@ jobs: run: yarn lint if: success() + - name: Run code-server unit tests + run: yarn test:unit + if: success() + - name: Upload coverage report to Codecov run: yarn coverage if: success() @@ -404,9 +408,6 @@ jobs: rm -r node_modules/playwright yarn install --check-files - - name: Run end-to-end tests - run: yarn test:unit - - name: Run end-to-end tests run: yarn test:e2e