From 70b46f9d630be23bc7ca00a7a4a3179d20a757c8 Mon Sep 17 00:00:00 2001 From: MengYX Date: Thu, 16 Dec 2021 08:16:04 +0800 Subject: [PATCH] maintenance: update ci (cherry picked from commit 10e35c5d3e4391e22fd005f04ab7be0e503c971a) --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 }}