fix: limit task concurrency for tests

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-09-07 19:53:21 +02:00
parent 6263af5ee2
commit b5b61aec6a

View file

@ -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",