From 90464f2715db0e8f4689dc78dc525aa3cc3f8c05 Mon Sep 17 00:00:00 2001 From: Armano Date: Thu, 9 Dec 2021 01:13:32 +0100 Subject: [PATCH 1/4] build: update codecov/codecov-action to v2 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ebf7a934156..da8d5ba53e77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,9 +137,10 @@ jobs: CI: true - name: Publish code coverage report - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} + files: ./packages/*/coverage/lcov.info flags: unittest name: codecov From 9fd069e1b58256e20a51620aca68ee2b9f4dde55 Mon Sep 17 00:00:00 2001 From: Armano Date: Thu, 9 Dec 2021 01:39:29 +0100 Subject: [PATCH 2/4] build: update files to use directory matching --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da8d5ba53e77..4ae7ac2078b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,7 +140,7 @@ jobs: uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./packages/*/coverage/lcov.info + files: ./packages/**/coverage/lcov.info flags: unittest name: codecov From 4180666bf69316976e3381e0c8c87b60de255bee Mon Sep 17 00:00:00 2001 From: Armano Date: Thu, 9 Dec 2021 03:02:11 +0100 Subject: [PATCH 3/4] build: enable verbose mode --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ae7ac2078b7..54dad7cbcaa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,9 +140,10 @@ jobs: uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./packages/**/coverage/lcov.info + files: packages/**/coverage/lcov.info flags: unittest name: codecov + verbose: true linting_and_style: name: Code style and lint From 7a29d0867d88c7a6cf22c28791ba447386d187c6 Mon Sep 17 00:00:00 2001 From: Armano Date: Thu, 9 Dec 2021 03:17:15 +0100 Subject: [PATCH 4/4] build: disable verbose mode --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54dad7cbcaa2..7af2bdb414ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,7 +143,6 @@ jobs: files: packages/**/coverage/lcov.info flags: unittest name: codecov - verbose: true linting_and_style: name: Code style and lint