Skip to content

Commit 57d776b

Browse files
feat: add codecov-action flags (#545)
## PR Checklist - [x] Addresses an existing open issue: fixes #544 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Adds `flags: ...` to each of the three test workflows.
1 parent 1323757 commit 57d776b

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/hydrate.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
uses: codecov/codecov-action@v3
1111
with:
1212
files: coverage-hydrate/lcov.info
13+
flags: hydrate
1314
- name: Archive code coverage results
1415
uses: actions/upload-artifact@v3
1516
with:

.github/workflows/setup.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
uses: codecov/codecov-action@v3
1111
with:
1212
files: coverage-setup/lcov.info
13+
flags: setup
1314
- name: Archive code coverage results
1415
uses: actions/upload-artifact@v3
1516
with:

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
- run: pnpm run test --coverage
88
- name: Codecov
99
uses: codecov/codecov-action@v3
10+
with:
11+
flags: unit
1012
- name: Archive code coverage results
1113
uses: actions/upload-artifact@v3
1214
with:

0 commit comments

Comments
 (0)