From 46210fd96e0091829d80d0f87151b78bea30036e Mon Sep 17 00:00:00 2001 From: Marco Saia Date: Fri, 28 Jun 2024 15:44:25 +0200 Subject: [PATCH] Added Jest Coverage GH Action --- .github/workflows/jest-coverage.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/jest-coverage.yml diff --git a/.github/workflows/jest-coverage.yml b/.github/workflows/jest-coverage.yml new file mode 100644 index 000000000..8a40d0ad6 --- /dev/null +++ b/.github/workflows/jest-coverage.yml @@ -0,0 +1,11 @@ +name: 'jest-coverage' +on: + pull_request: + branches: + - develop +jobs: + coverage: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ArtiomTr/jest-coverage-report-action@v2 \ No newline at end of file