Skip to content

Commit

Permalink
chore: fix failing parallel tests fails to exit
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed Dec 7, 2022
1 parent 3188bdf commit e5d30e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Run lint and type checks
run: pnpm lint & pnpm check:types & wait
run: pnpm lint & pnpm check:types & wait -n

- name: Run tests
run: pnpm test -- --maxWorkers=4 --no-color --coverage=false --changedSince=origin/main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Run lint and type checks
run: pnpm lint & pnpm check:types & wait
run: pnpm lint & pnpm check:types & wait -n

- name: Run tests
run: pnpm test -- --maxWorkers=4 --no-color --coverage=false --changedSince=origin/main

0 comments on commit e5d30e4

Please sign in to comment.