Skip to content

Commit 6355244

Browse files
authoredJun 25, 2024··
ci: Prevent uploading coverage files found in Nx cache (#7619)
1 parent 15e42ba commit 6355244

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,7 @@ jobs:
5656
TAG: ${{ inputs.tag }}
5757
- name: Upload coverage to Codecov
5858
uses: codecov/codecov-action@v4
59+
with:
60+
directory: packages
5961
env:
6062
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

‎.github/workflows/pr.yml

+2
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@ jobs:
4343
run: npx nx-cloud stop-all-agents
4444
- name: Upload coverage to Codecov
4545
uses: codecov/codecov-action@v4
46+
with:
47+
directory: packages
4648
env:
4749
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.