From 610745938b7d865af7a2e290a0e2893c360d16b4 Mon Sep 17 00:00:00 2001 From: Jukka Kurkela Date: Tue, 10 Nov 2020 17:21:38 +0200 Subject: [PATCH] Change to coveralls action (#8029) * Change to coveralls action * Parallel coveralls --- .github/workflows/ci.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b366dba83..ba8d27a7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,20 @@ jobs: npm run docs npm run typedoc npm pack - - name: Publish Test Results - run: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls - shell: bash - continue-on-error: true + - name: Coveralls Parallel + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.github_token }} + flag-name: run-${{ matrix.os }} + parallel: true + + + finish: + needs: build + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.github_token }} + parallel-finished: true -- 2.47.2