Skip to content

Commit

Permalink
chore: try to run tests in parallell on CI
Browse files Browse the repository at this point in the history
It was turned off in #276
Things might have changed since then. Tests run fine in parallell
on localhost.
  • Loading branch information
wkillerud committed Aug 19, 2024
1 parent 326aad4 commit 1b7612e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- run: npm run types

- run: npm run test:ci
- run: npm test

- run: npx semantic-release
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:

- run: npm run types

- run: npm run test:ci
- run: npm test
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 0 --disable-coverage test/integration/**/*.test.mjs",
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 0 --disable-coverage test/*.test.mjs",
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 0 --disable-coverage test/tasks/*.test.mjs",
"test:ci:integration": "npm run test:integration -- --jobs=1",
"test:ci:unit": "npm run test:unit -- --jobs=1",
"test:ci:tasks": "npm run test:tasks -- --jobs=1",
"test:ci": "run-s test:ci:*",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier -c .",
Expand Down

0 comments on commit 1b7612e

Please sign in to comment.