From: Jukka Kurkela Date: Tue, 10 Nov 2020 15:21:38 +0000 (+0200) Subject: Change to coveralls action (#8029) X-Git-Tag: v3.0.0-beta.7~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=610745938b7d865af7a2e290a0e2893c360d16b4;p=thirdparty%2FChart.js.git Change to coveralls action (#8029) * Change to coveralls action * Parallel coveralls --- 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