Update tracked files
CI Pipeline / test (20) (pull_request) Successful in 6m27s
CI Pipeline / test (18) (pull_request) Successful in 8m15s
CI Pipeline / e2e (firefox) (pull_request) Successful in 3m22s
CI Pipeline / e2e (webkit) (pull_request) Successful in 3m39s
CI Pipeline / e2e (chromium) (pull_request) Successful in 11m31s
CI Pipeline / visual-regression (pull_request) Successful in 6m22s
CI Pipeline / storybook (pull_request) Successful in 1m26s
CI Pipeline / performance (pull_request) Successful in 6m44s
CI Pipeline / build (pull_request) Successful in 2m8s

This commit is contained in:
adilallo
2026-01-26 15:58:08 -07:00
parent 94a7922b30
commit f2cdb6fec9
82 changed files with 34 additions and 53359 deletions
+4 -4
View File
@@ -10,10 +10,10 @@ const path = require("path");
console.log("🔍 Testing LHCI Configuration...\n");
// Check if config/lighthouse.json exists
const configPath = path.join(process.cwd(), "config/lighthouse.json");
// Check if .lighthouserc.json exists
const configPath = path.join(process.cwd(), ".lighthouserc.json");
if (fs.existsSync(configPath)) {
console.log("✅ config/lighthouse.json found");
console.log("✅ .lighthouserc.json found");
try {
const config = JSON.parse(fs.readFileSync(configPath, "utf8"));
@@ -30,7 +30,7 @@ if (fs.existsSync(configPath)) {
console.log("❌ Configuration is not valid JSON:", error.message);
}
} else {
console.log("❌ config/lighthouse.json not found");
console.log("❌ .lighthouserc.json not found");
}
// Check if @lhci/cli is installed