mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-03 06:54:02 +01:00
Coveralls no longer runs on Windows CI (#10367)
This commit is contained in:
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user