chore: Reduce codecov pushes

pushes to non-develop branches will not send coverage reports.
This might reduce the coverage variability issue we're having.
This commit is contained in:
Sidharth Vinod
2023-07-06 11:32:37 +05:30
parent db30f21ac5
commit 4d0c461fa3
2 changed files with 4 additions and 1 deletions

View File

@@ -47,7 +47,8 @@ jobs:
VITEST_COVERAGE: true
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
if: steps.cypress.conclusion == 'success'
# Run step only pushes to develop and pull_requests
if: ${{ steps.cypress.conclusion == 'success' && (github.event_name == 'pull_request' || github.ref == 'refs/heads/develop')}}
with:
files: coverage/cypress/lcov.info
flags: e2e

View File

@@ -43,6 +43,8 @@ jobs:
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
# Run step only pushes to develop and pull_requests
if: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/develop' }}
with:
files: ./coverage/vitest/lcov.info
flags: unit