Skip to content

Commit

Permalink
fix typo in workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhaiwat10 committed Jan 13, 2023
1 parent 28fbf75 commit df2e508
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-new-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit df2e508

Please sign in to comment.