Skip to content

Commit

Permalink
ci: run tests in serial
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck authored and jfmengels committed Dec 4, 2024
1 parent 1e1e437 commit b4edb69
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"prettier-check": "prettier . --check --cache",
"prettier-fix": "prettier . --write --cache",
"test": "turbo run testing check-engines --continue",
"test-sync": "npm run test-run && npm run jest",
"test-run": "(cd test/ && ./run.sh)",
"test-run-record": "(cd test/ && ./run.sh record)",
"tsc": "tsc",
Expand Down
17 changes: 15 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
"tsc",
"eslint-check",
"prettier-check",
"jest",
"test-run"
"test-sync"
]
},
"testing:offline": {
Expand All @@ -40,6 +39,20 @@
"jest"
]
},
"test-sync": {
"inputs": [
"ast-codec/",
"bin/",
"init-templates/",
"lib/",
"new-package/",
"parseElm/",
"review/",
"template/",
"test/",
"vendor/"
]
},
"eslint-check": {
"inputs": ["lib/", "vendor/", ".eslintrc.js", "tsconfig.json"]
},
Expand Down

0 comments on commit b4edb69

Please sign in to comment.