Skip to content

Commit a56b56d

Browse files
authored
ci: run codecov on all platforms #398
Problem: Code coverage is not counted for Windows. For example, in #397 codecov flags the `if (LOCALAPPDATA)` branches. Solution: Run codecov on all platforms (but only for a single node version, to be frugal).
1 parent 21e9f77 commit a56b56d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ jobs:
9393
npm run test-build --stream
9494
9595
- uses: codecov/codecov-action@v4
96-
if: runner.os == 'macOS'
96+
if: matrix.node == '20'
9797
with:
9898
verbose: true # optional (default = false)

0 commit comments

Comments
 (0)