From: Evert Timberg Date: Sun, 22 May 2022 17:15:34 +0000 (-0400) Subject: Coveralls no longer runs on Windows CI (#10367) X-Git-Tag: v3.8.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c0a71a3fcd9af279d889d2d3d36d8d89f84db05;p=thirdparty%2FChart.js.git Coveralls no longer runs on Windows CI (#10367) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9ad37173..3d4531975 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,9 @@ jobs: npm run docs npm pack - name: Coveralls Parallel - Chrome - if: steps.changes.outputs.src == 'true' + if: | + steps.changes.outputs.src == 'true' && + runner.os != 'Windows' uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} @@ -81,7 +83,9 @@ jobs: flag-name: ${{ matrix.os }}-chrome parallel: true - name: Coveralls Parallel - Firefox - if: steps.changes.outputs.src == 'true' + if: | + steps.changes.outputs.src == 'true' && + runner.os != 'Windows' uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }}