From 876799d623073ba53f84690f30efc2956dae7cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Pata=C4=8Dko=20Koderman?= Date: Wed, 15 Nov 2023 15:23:28 +0100 Subject: [PATCH] ci: update how tests are run --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ff9862f..467e900 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,7 @@ jobs: with: infisical_token: ${{ secrets.INFISICAL_TOKEN }} environment: 'staging' - - uses: ArtiomTr/jest-coverage-report-action@v2 - with: - test-script: source .env && pnpm test + - name: Run tests + run: source .env && pnpm test + - name: Create report + run: source .env && pnpm jest --reporters="summary" --reporters="github-actions"