Merge pull request #263 from oke-py/fix/conditional-coveralls-upload

fix(ci): run coveralls upload only on ubuntu-latest
This commit is contained in:
Naoki Oketani
2025-05-13 21:16:04 +09:00
committed by GitHub

View File

@@ -21,7 +21,9 @@ jobs:
run: |
npm ci
npm run test:coverage
- uses: coverallsapp/github-action@master
- name: Upload coverage to Coveralls
if: matrix.os == 'ubuntu-latest'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}