]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Coveralls no longer runs on Windows CI (#10367)
authorEvert Timberg <evert.timberg@gmail.com>
Sun, 22 May 2022 17:15:34 +0000 (13:15 -0400)
committerGitHub <noreply@github.com>
Sun, 22 May 2022 17:15:34 +0000 (13:15 -0400)
.github/workflows/ci.yml

index f9ad37173057d231f2dcf808a43f7a998c203281..3d45319759a0968f5b3feab6af4edb574fda7e70 100644 (file)
@@ -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 }}