feat: persist app group and env group filter in local storage #8643
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Coverage | |
on: pull_request | |
jobs: | |
test-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Jest coverage report | |
uses: ArtiomTr/[email protected] | |
id: coverage | |
with: | |
package-manager: yarn | |
annotations: failed-tests | |
test-script: yarn test:ci | |
output: report-markdown | |
- name: Comment on pull request | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: always() | |
with: | |
recreate: true | |
message: ${{ steps.coverage.outputs.report }} |