From df2e50881845d9ca0369175e036ac4513bce5d9f Mon Sep 17 00:00:00 2001 From: "Dhaiwat / dhai.eth" Date: Fri, 13 Jan 2023 11:24:34 +0530 Subject: [PATCH] fix typo in workflow file --- .github/workflows/test-new-setup.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-new-setup.yaml b/.github/workflows/test-new-setup.yaml index 3da8bde1227..8f8c4599c64 100644 --- a/.github/workflows/test-new-setup.yaml +++ b/.github/workflows/test-new-setup.yaml @@ -36,16 +36,16 @@ jobs: id: findPr - name: Node unit tests - run: pnpm test --group=node/unit + run: pnpm test --groups=node/unit - name: Node e2e tests - run: pnpm test --group=node/e2e + run: pnpm test --groups=node/e2e - name: Node+browser unit tests - run: pnpm test --group=common/unit --env=jsdom && pnpm test --group=common/unit + run: pnpm test --groups=common/unit --env=jsdom && pnpm test --groups=common/unit - name: Node+browser e2e tests - run: pnpm test --group=common/e2e --env=jsdom && pnpm test --group=common/e2e + run: pnpm test --groups=common/e2e --env=jsdom && pnpm test --groups=common/e2e # - name: Run tests and publish coverage # uses: ArtiomTr/jest-coverage-report-action@v2