Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/ci-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,26 @@ jobs:
name: JEST Tests # Name of the check run which will be created
path: ${{ env.broadcastjsWorkingDirectory }}/*-junit.xml # Path to test results
reporter: jest-junit # Format of test results

- name: Publish Tests Results to CodeCov
uses: codecov/test-results-action@v1
with:
fail_ci_if_error: true # optional (default = false)
disable_search: true
files: ./${{ env.broadcastjsWorkingDirectory }}/vitest-junit.xml # optional
flags: broadcast # optional
name: broadcastjs-tests # optional
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)
- name: Publish Coverage to CodeCov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true # optional (default = false)
disable_search: true
files: ./${{ env.broadcastjsWorkingDirectory }}/coverage/lcov.info # optional
flags: broadcast # optional
name: broadcastjs-coverage # optional
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)
- name: Create destination folder
run: mkdir -p ${{env.artifactlocation}}
- name: Copy file outputjs into staging directory
Expand Down
Loading