diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 03b68ef15114a3ba5fe17f6717acf907af91111d..855101fa97e6e38453488fc5f7f8a52720761961 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,6 +21,13 @@ on:
 
 
 jobs:
+  test-coverage:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Test Coverage
+        uses: ArtiomTr/jest-coverage-report-action@v2.0-rc.6
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}
   build:
     runs-on: ubuntu-latest
     strategy:
@@ -44,13 +51,6 @@ jobs:
       - name: Install Dependencies
         run: npm ci
 
-      - name: Test Coverage
-        uses: ArtiomTr/jest-coverage-report-action@v2.0-rc.6
-        with:
-          github-token: ${{ secrets.GITHUB_TOKEN }}
-
-
-
       - name: Build
         run: npm run build ${{ matrix.BUILD_ARGS }}