From ed001d9685ebd633e951f0740d0a6d68a49b09c9 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 9 Aug 2022 17:14:44 +0200 Subject: [PATCH] update action with working dir --- src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 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 6b6f59e820..43d3ac1427 100644 --- a/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml +++ b/src/Umbraco.Web.UI.Client/.github/workflows/build_test.yml @@ -36,13 +36,14 @@ jobs: - name: Report code coverage uses: zgosalvez/github-actions-report-lcov@v1 with: - coverage-files: coverage/lcov.*.info + coverage-files: coverage/lcov.info minimum-coverage: 90 artifact-name: code-coverage-report github-token: ${{ secrets.GITHUB_TOKEN }} + working-directory: ./src - uses: actions/upload-artifact@v2 if: always() with: - name: coverage-report + name: coverage-report-html path: coverage/lcov-report/ retention-days: 30