fix: resolve npm audit vulnerabilities (CAR-937) #11

Merged
Savannah Savings merged 8 commits from betty/car-935-fix-setup-node into dev 2026-05-22 10:43:18 +00:00
4 changed files with 896 additions and 925 deletions
+11 -2
View File
@@ -87,8 +87,17 @@ jobs:
npx playwright install --with-deps chromium
- name: Start preview server
run: |
npm run preview &
npx wait-on http://localhost:4173/ --timeout 30000
npm run preview -- --port 4173 &
for i in $(seq 1 30); do
if curl -s http://localhost:4173/ > /dev/null 2>&1; then
echo "Server ready on http://localhost:4173/"
exit 0
fi
echo "Waiting for server... ($i/30)"
sleep 2
done
echo "Server failed to start"
exit 1
- name: Run Lighthouse CI
run: |
CHROME_PATH=$(find /home/runner/.cache/ms-playwright -name chrome -type f 2>/dev/null | head -1)
+881 -921
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -48,10 +48,12 @@
"vitest": "^3.2.4"
},
"overrides": {
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"@rollup/pluginutils": "5.3.0",
"brace-expansion": ">=1.1.15",
"fast-uri": ">=3.1.2",
"flatted": "^3.4.2",
"serialize-javascript": "7.0.5",
"brace-expansion": ">=1.1.13",
"lodash": ">=4.17.24",
"minimatch": "^10.2.4"
}
+1 -1
View File
@@ -16,7 +16,7 @@ export function VerifyEmail() {
const callbackURL = searchParams.get("callbackURL") || "/";
if (!token) {
setStatus("error");
queueMicrotask(() => setStatus("error"));
return;
}