Skip to content

Commit 73e54f9

Browse files
committed
fix: attempt to correct CI runs
Currently even if a lerna task fails, lerna still exits with success and so does the CI task. This attempts to fix this.
1 parent 34bcfc6 commit 73e54f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"bootstrap-ci": "npm ci && lerna run bootstrap",
2222
"bootstrap": "npm install && lerna run bootstrap --stream",
2323
"bump-packages": "bump-monorepo-packages",
24-
"check-ci": "lerna run check",
24+
"check-ci": "lerna run check --concurrency 1 --sort",
2525
"check": "lerna run check --stream",
2626
"lint": "lerna run lint --stream",
2727
"compile-changed": "lerna run compile --stream --since origin/HEAD",
@@ -37,7 +37,7 @@
3737
"reformat-changed": "lerna run reformat --stream --no-bail --since origin/HEAD --exclude-dependents",
3838
"reformat": "lerna run reformat --stream --no-bail",
3939
"test-changed": "lerna run test --stream --concurrency 1 --since origin/HEAD",
40-
"test-ci": "lerna run test-ci --concurrency 1",
40+
"test-ci": "lerna run test-ci --concurrency 1 --sort",
4141
"test": "lerna run test --concurrency 1 --stream",
4242
"where": "node ./scripts/src/where.js"
4343
},

0 commit comments

Comments
 (0)