ci: enforce lint coverage and Node LTS quality gates

This commit is contained in:
NuklearRabbit
2026-07-29 16:27:16 +02:00
parent a7ab2d6cc8
commit 8e580a0b13
7 changed files with 1494 additions and 8 deletions
+1 -1
View File
@@ -1699,7 +1699,7 @@ printf 'existingPreservePaths=%s\\n' "$existing_preserve_paths"
) : [];
const missingDeploymentFiles = [];
for (const file of localDeploymentFiles) {
if (!Boolean((await fs.stat(file).catch(() => null))?.isFile())) missingDeploymentFiles.push(file);
if (!(await fs.stat(file).catch(() => null))?.isFile()) missingDeploymentFiles.push(file);
}
if (deploymentMode === "push-bundle") checks.push({
id: "local-deployment-file",