ci(plugins): add bundled extension lint lane

This commit is contained in:
Vincent Koc
2026-04-06 15:23:35 +01:00
parent 0337a0d7f8
commit d3a35d7e95
3 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,88 @@
import { spawnSync } from "node:child_process";
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import {
acquireLocalHeavyCheckLockSync,
applyLocalOxlintPolicy,
} from "./lib/local-heavy-check-runtime.mjs";
const repoRoot = process.cwd();
const oxlintPath = path.resolve("node_modules", ".bin", "oxlint");
const releaseLock = acquireLocalHeavyCheckLockSync({
cwd: repoRoot,
env: process.env,
toolName: "oxlint-bundled-extensions",
lockName: "oxlint-bundled-extensions",
});
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bundled-extension-oxlint-"));
const tempConfigPath = path.join(tempDir, "oxlint.json");
try {
const extensionFiles = collectTypeScriptFiles(path.resolve(repoRoot, "extensions"));
if (extensionFiles.length === 0) {
console.error("No bundled extension files found.");
process.exit(1);
}
writeTempOxlintConfig(tempConfigPath);
const baseArgs = ["-c", tempConfigPath, ...process.argv.slice(2), ...extensionFiles];
const { args: finalArgs, env } = applyLocalOxlintPolicy(baseArgs, process.env);
const result = spawnSync(oxlintPath, finalArgs, {
stdio: "inherit",
env,
shell: process.platform === "win32",
});
if (result.error) {
throw result.error;
}
process.exit(result.status ?? 1);
} finally {
fs.rmSync(tempDir, { recursive: true, force: true });
releaseLock();
}
function writeTempOxlintConfig(configPath) {
const config = JSON.parse(fs.readFileSync(path.resolve(repoRoot, ".oxlintrc.json"), "utf8"));
delete config.$schema;
if (Array.isArray(config.ignorePatterns)) {
config.ignorePatterns = config.ignorePatterns.filter((pattern) => pattern !== "extensions/");
if (config.ignorePatterns.length === 0) {
delete config.ignorePatterns;
}
}
fs.writeFileSync(configPath, `${JSON.stringify(config, null, 2)}\n`, "utf8");
}
function collectTypeScriptFiles(directoryPath) {
const entries = fs.readdirSync(directoryPath, { withFileTypes: true });
const files = [];
for (const entry of entries.toSorted((a, b) => a.name.localeCompare(b.name))) {
const entryPath = path.join(directoryPath, entry.name);
if (entry.isDirectory()) {
files.push(...collectTypeScriptFiles(entryPath));
continue;
}
if (!entry.isFile()) {
continue;
}
if (!entry.name.endsWith(".ts") && !entry.name.endsWith(".tsx")) {
continue;
}
files.push(path.relative(repoRoot, entryPath).split(path.sep).join("/"));
}
return files;
}