From 3c0a71a3fcd9af279d889d2d3d36d8d89f84db05 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sun, 22 May 2022 13:15:34 -0400 Subject: [PATCH] Coveralls no longer runs on Windows CI (#10367) --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 }} -- 2.47.2