Skip to content

Commit

Permalink
windows coverage fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Sep 22, 2020
1 parent a3dd9bd commit c2158ad
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,17 @@ jobs:
YARN_NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: yarn run test --forbid-only --forbid-pending
- name: Upload coverage
- name: Upload coverage (Windows)
if: ${{ matrix.os == 'windows-latest' }}
continue-on-error: true
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: node-${{ matrix.node }}-on-${{ matrix.os }}
parallel: true
path-to-lcov: coverage\lcov.info
- name: Upload coverage (non-Windows)
if: ${{ matrix.os != 'windows-latest' }}
continue-on-error: true
uses: coverallsapp/github-action@v1.1.2
with:
Expand Down

0 comments on commit c2158ad

Please sign in to comment.