From 586110feb60aab80d2c76aab941a07529fcd0c09 Mon Sep 17 00:00:00 2001 From: Luca <681992+lukka@users.noreply.github.com> Date: Thu, 11 Nov 2021 13:18:48 +0100 Subject: [PATCH] test coverall parallels to ensure #109 is no reoccurring (#113) --- .github/workflows/build-test.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 0fd64060..6fa56733 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -35,9 +35,13 @@ jobs: name: build and test shell: bash - name: Coveralls - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@1.1.3 with: github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + flag-name: ${{ matrix.os }}-build_and_unit_test + env: + NODE_COVERALLS_DEBUG: 1 tests: needs: build_and_unit_test @@ -90,3 +94,14 @@ jobs: vcpkgGitCommitId: 'd417ae59d6e9aa20d9f812b5deb966645c54687d' appendedCacheKey: ${{ env.GITHUB_RUN_ID }} + finalize_coveralls: + needs: build_and_unit_test + runs-on: ubuntu-latest + steps: + - name: Finalize Coveralls + uses: coverallsapp/github-action@1.1.3 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true + env: + NODE_COVERALLS_DEBUG: 1