From 14f32c61fb9b325c97a8adfa838ac5f8ddec7de9 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 27 Jan 2023 14:39:41 +0100 Subject: [PATCH] remove lcov reporter since it's spammy and just uploading the report instead --- .../.github/workflows/build_test.yml | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml b/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml index 2b92ab2950..4c93e03587 100644 --- a/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml +++ b/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml @@ -33,20 +33,20 @@ jobs: - run: npm run build - run: sudo npx playwright install-deps - run: npm test - # Uncommented since the github-actions-report-lcov also generates a html report - # - name: Upload Code Coverage reports - # uses: actions/upload-artifact@v2 - # if: always() - # with: - # name: code-coverage - # path: coverage/ - # retention-days: 30 - - name: Report code coverage - uses: zgosalvez/github-actions-report-lcov@v2 + - name: Upload Code Coverage reports + uses: actions/upload-artifact@v2 if: always() - continue-on-error: true with: - coverage-files: coverage/lcov.info - artifact-name: code-coverage-report - github-token: ${{ secrets.GITHUB_TOKEN }} - working-directory: ./ + name: code-coverage + path: coverage/ + retention-days: 30 + # Commented out since it is outdated and is quite spammy + # - name: Report code coverage + # uses: zgosalvez/github-actions-report-lcov@v2 + # if: always() + # continue-on-error: true + # with: + # coverage-files: coverage/lcov.info + # artifact-name: code-coverage-report + # github-token: ${{ secrets.GITHUB_TOKEN }} + # working-directory: ./