diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03b68ef..855101f 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 }}