Automate RC8 release journeys
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-18 06:07:44 +02:00
parent 0fae53a7de
commit 55685ba1bd
22 changed files with 2665 additions and 11 deletions
+8 -2
View File
@@ -7,7 +7,9 @@
"start": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -p tsconfig.json --noEmit"
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:unit": "vitest run",
"test:e2e": "node e2e/releaseJourneys.mjs"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
@@ -18,10 +20,14 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^26.1.0",
"playwright": "^1.61.1",
"typescript": "^5.5.4",
"vite": "^7.3.6"
"vite": "^7.3.6",
"vitest": "^3.2.6"
}
}