Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Add reporting backend to Codecov #306

Merged
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/kibana-reports-test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ jobs:
max_attempts: 3
command: cd kibana/plugins/${{ env.PLUGIN_NAME }}; yarn test --coverage

- name: Uploads coverage
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
flags: Kibana-reports
directory: kibana/plugins/
token: ${{ secrets.CODECOV_TOKEN }}

- name: Build Artifact
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
cd reports-scheduler
./gradlew build

- name: Upload coverage
uses: codecov/codecov-action@v1
with:
flags: reports-scheduler
directory: reports-scheduler/
token: ${{ secrets.CODECOV_TOKEN }}

- name: Create Artifact Path
run: |
mkdir -p reports-scheduler-builds
Expand Down