Skip to content

Commit

Permalink
test: exclude unmerged lcov files from codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdyman committed Sep 17, 2023
1 parent e684b34 commit 0cee673
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
files: ./coverage/lcov.info
files: ./coverage/lcov.info,!./coverage/ssr-tests/*,!./coverage/storybook/*

- name: Upload Code Climate Test Coverage
uses: paambaati/codeclimate-action@v5.0.0
Expand All @@ -61,7 +61,8 @@ jobs:
with:
debug: true
coverageLocations: |
${{github.workspace}}/coverage/lcov.info:lcov
${{github.workspace}}/coverage/ssr-tests/*.info:lcov
${{github.workspace}}/coverage/storybook/*.info:lcov
- uses: preactjs/compressed-size-action@v2
with:
Expand Down

0 comments on commit 0cee673

Please sign in to comment.