Fix modules dir tsc not running in CI (#33811)

* Fix modules dir tsc not running in CI

* Switch to nx run-many for ci task

This has smarter scheduling logic for dependant tasks
This commit is contained in:
Michael Telatynski
2026-06-11 10:37:47 +00:00
committed by GitHub
parent 2d434c72d4
commit 2d24778214
5 changed files with 13 additions and 4 deletions
+5
View File
@@ -3,6 +3,11 @@
"projectType": "library",
"implicitDependencies": ["modules/*"],
"targets": {
"lint:types": {
"command": "tsc --noEmit",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright"]
},
"test:playwright": {
"command": "playwright test",
"options": { "cwd": "modules" },