fix: resolve npm audit vulnerabilities (CAR-937) #11
+11
-2
@@ -87,8 +87,17 @@ jobs:
|
|||||||
npx playwright install --with-deps chromium
|
npx playwright install --with-deps chromium
|
||||||
- name: Start preview server
|
- name: Start preview server
|
||||||
run: |
|
run: |
|
||||||
npm run preview &
|
npm run preview -- --port 4173 &
|
||||||
npx wait-on http://localhost:4173/ --timeout 30000
|
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
|
- name: Run Lighthouse CI
|
||||||
run: |
|
run: |
|
||||||
CHROME_PATH=$(find /home/runner/.cache/ms-playwright -name chrome -type f 2>/dev/null | head -1)
|
CHROME_PATH=$(find /home/runner/.cache/ms-playwright -name chrome -type f 2>/dev/null | head -1)
|
||||||
|
|||||||
Generated
+881
-921
File diff suppressed because it is too large
Load Diff
+3
-1
@@ -48,10 +48,12 @@
|
|||||||
"vitest": "^3.2.4"
|
"vitest": "^3.2.4"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
|
||||||
"@rollup/pluginutils": "5.3.0",
|
"@rollup/pluginutils": "5.3.0",
|
||||||
|
"brace-expansion": ">=1.1.15",
|
||||||
|
"fast-uri": ">=3.1.2",
|
||||||
"flatted": "^3.4.2",
|
"flatted": "^3.4.2",
|
||||||
"serialize-javascript": "7.0.5",
|
"serialize-javascript": "7.0.5",
|
||||||
"brace-expansion": ">=1.1.13",
|
|
||||||
"lodash": ">=4.17.24",
|
"lodash": ">=4.17.24",
|
||||||
"minimatch": "^10.2.4"
|
"minimatch": "^10.2.4"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export function VerifyEmail() {
|
|||||||
const callbackURL = searchParams.get("callbackURL") || "/";
|
const callbackURL = searchParams.get("callbackURL") || "/";
|
||||||
|
|
||||||
if (!token) {
|
if (!token) {
|
||||||
setStatus("error");
|
queueMicrotask(() => setStatus("error"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user