From 009db19031ca5e4770ea1169ff205834598da42d Mon Sep 17 00:00:00 2001 From: Vlad Rindevich Date: Wed, 1 Sep 2021 13:18:33 +0300 Subject: [PATCH] fix(frontend): set the working directory for Codecov (#81) * chore(frontend): attempt to set the working directory for Codecov [2] * chore(frontend): attempt to set the working directory for Codecov [3] * chore(frontend): attempt to set the working directory for Codecov [4] * chore(frontend): remove unnecessary verbosity for codecov action * chore(frontend): use "./" to specify current folder for files * chore(frontend): use "./" to specify current folder for files [2] * chore(frontend): remove unnecessary steps * chore(frontend): get the file searching step back --- .github/workflows/frontend.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 9bb6e09095..e4ca6aa642 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -46,7 +46,6 @@ jobs: CI: true - name: Collect Coverage run: | - echo "${{ github.workspace }}/frontend" COVFILES=$(find packages -wholename '*/.coverage/lcov.info' | tr '\n' ',' | sed '$s/,$//') echo "COVFILES=$COVFILES" >> $GITHUB_ENV - name: Send Coverage to Codecov @@ -56,5 +55,4 @@ jobs: files: ${{ env.COVFILES }} flags: unittests fail_ci_if_error: true - verbose: true - working-directory: ${{ github.workspace }}/frontend + root_dir: ${{ github.workspace }}/frontend