Skip to content

Commit

Permalink
Remove test job from windows runner (chartjs#730)
Browse files Browse the repository at this point in the history
* Remove test job from windows runner

* removes coveralls for windows
  • Loading branch information
stockiNail authored May 9, 2022
1 parent c8fff25 commit 43dbb0d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,21 @@ jobs:
npm ci
npm run build
if [ "${{ runner.os }}" == "Windows" ]; then
npm test
npm run lint
else
xvfb-run --auto-servernum npm test
fi
shell: bash
- name: Coveralls Parallel - Chrome
if: runner.os != 'Windows'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: './coverage/chrome/lcov.info'
flag-name: ${{ matrix.os }}-chrome
parallel: true
- name: Coveralls Parallel - Firefox
if: runner.os != 'Windows'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
Expand Down

0 comments on commit 43dbb0d

Please sign in to comment.