Skip to content

Commit

Permalink
chore(tests): do not run unit tests in parallel (#1645)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerolimov committed May 14, 2024
1 parent 62fcafc commit bd92be8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:storybook": "yarn --cwd packages/storybook build",
"tsc": "turbo run tsc",
"clean": "turbo run clean",
"test": "turbo run test",
"test": "turbo run test --concurrency=1",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"lint-staged": "lint-staged",
Expand Down
9 changes: 7 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
".prettierrc.js",
".eslintrc.js",
"tsconfig.json",
"yarn.lock"
],
"pipeline": {
"start": {
"cache": false,
Expand Down Expand Up @@ -30,6 +36,5 @@
"outputs": ["../../dist-types/**"],
"dependsOn": ["^tsc"]
}
},
"globalDependencies": ["prettierrc.js"]
}
}

0 comments on commit bd92be8

Please sign in to comment.