Files
element-web/modules/project.json
T
Michael Telatynski 2d24778214 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
2026-06-11 10:37:47 +00:00

23 lines
771 B
JSON

{
"$schema": "../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"implicitDependencies": ["modules/*"],
"targets": {
"lint:types": {
"command": "tsc --noEmit",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright"]
},
"test:playwright": {
"command": "playwright test",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright", "^build"]
},
"test:playwright:screenshots": {
"command": "playwright-screenshots playwright test --update-snapshots --grep @screenshot",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright", "^build"]
}
}
}