Add TypeScript so Jenkins typecheck uses the real tsc, not the dummy npx package.
| ... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
| "test:ui": "playwright test --ui", | "test:ui": "playwright test --ui", | ||
| "test:headed": "playwright test --headed", | "test:headed": "playwright test --headed", | ||
| "test:debug": "playwright test --debug", | "test:debug": "playwright test --debug", | ||
| "typecheck": "npx tsc --noEmit", | "typecheck": "tsc --noEmit", | ||
| "test:ci": "node scripts/run-ci.mjs", | "test:ci": "node scripts/run-ci.mjs", | ||
| "test:ci:smoke": "node scripts/run-ci.mjs --suite=smoke", | "test:ci:smoke": "node scripts/run-ci.mjs --suite=smoke", | ||
| "test:ci:nightly": "node scripts/run-ci.mjs --suite=nightly", | "test:ci:nightly": "node scripts/run-ci.mjs --suite=nightly", | ||
| ... | @@ -242,6 +242,7 @@ | ... | @@ -242,6 +242,7 @@ |
| "@playwright/test": "^1.55.0", | "@playwright/test": "^1.55.0", | ||
| "@types/node": "^22.15.0", | "@types/node": "^22.15.0", | ||
| "allure-commandline": "^2.43.0", | "allure-commandline": "^2.43.0", | ||
| "allure-playwright": "^3.10.2" | "allure-playwright": "^3.10.2", | ||
| "typescript": "^5.9.3" | |||
| } | } | ||
| } | } |
Please register or sign in to comment