Coveralls no longer runs on Windows CI (#10367)

This commit is contained in:
Evert Timberg
2022-05-22 13:15:34 -04:00
committed by GitHub
parent 1422c93dc0
commit 3c0a71a3fc

View 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 }}