mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
fix: limit task concurrency for tests
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
6263af5ee2
commit
b5b61aec6a
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@
|
|||
"format": "dotenv -c development -- turbo run format",
|
||||
"start:dev": "dotenv -c development -- turbo run start:dev",
|
||||
"start": "dotenv -c production -- turbo run start",
|
||||
"test:ci": "dotenv -c test -- turbo run test:ci",
|
||||
"test": "dotenv -c test -- turbo run test",
|
||||
"test:ci": "dotenv -c test -- turbo run test:ci --concurrency 1",
|
||||
"test": "dotenv -c test -- turbo run test --concurrency 1",
|
||||
"test:e2e:ci": "dotenv -c test -- turbo run test:e2e:ci"
|
||||
},
|
||||
"packageManager": "yarn@3.6.3",
|
||||
|
|
Loading…
Reference in a new issue