* Prepare v17.6.5 stability hardening patch * Move v17.6.5 stability patch logic to script * Fix v17.6.5 stability patch workflow * Harden Caterium v17.6.5 stability * Remove one-time v17.6.5 patch workflow * Remove one-time v17.6.5 patch script * Update static stability checks for v17.6.5 * Fix v17.6.5 E2E version expectation * Update v17.6.5 E2E version expectation * Remove one-time v17.6.5 test patch workflow * Capture failing v17.6.5 E2E diagnostics * Capture v17.6.5 E2E failures * Make v17.6.5 stability E2E deterministic * Make v17.6.5 E2E checks deterministic * Remove one-time deterministic E2E workflow * Remove one-time E2E diagnostic workflow * Remove temporary E2E diagnostics --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
21 lines
968 B
JSON
21 lines
968 B
JSON
{
|
|
"name": "caterium-app",
|
|
"private": true,
|
|
"version": "17.6.5",
|
|
"type": "module",
|
|
"scripts": {
|
|
"check:syntax": "node --check public/app-runtime.js && node --check public/service-worker.js && node --check public/legacy/bootstrap.js && node --check public/core/sun-safe.js && node --check public/core/performance.js && node --check public/core/hotfix-v1763.js && node --check public/core/ops-ux-v1762.js && node --check public/core/ux-fixes-v1764.js && node --check public/core/pdf-engine.js",
|
|
"test:static": "node tests/static-security.mjs",
|
|
"check:release": "node tests/release-check.mjs",
|
|
"check:deploy": "npm run check:syntax && npm run test:static && npm run check:release",
|
|
"test:e2e": "playwright test --config=tests/playwright.config.mjs",
|
|
"test": "npm run check:deploy",
|
|
"deploy": "wrangler deploy"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.51.0",
|
|
"http-server": "^14.1.1",
|
|
"wrangler": "^4.0.0"
|
|
}
|
|
}
|