ci(codex): run adapter checks across OS matrix

This commit is contained in:
YeonGyu-Kim
2026-05-26 14:00:18 +09:00
parent f87eceadae
commit b886ca9ca4
5 changed files with 66 additions and 11 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import { fileURLToPath } from "node:url"
const repositoryRoot = fileURLToPath(new URL("..", import.meta.url))
const commandRoots = [".opencode/command", ".agents/command"] as const
const skillRoots = [".opencode/skills", ".agents/skills"] as const
const packDryRunTimeoutMs = 15_000
class PackDryRunError extends Error {
constructor(readonly exitCode: number, readonly stderr: string) {
@@ -130,5 +131,5 @@ describe("published package layout", () => {
// then
const missingPaths = expectedAssetPaths.filter((expectedPath) => !packedPaths.has(expectedPath))
expect(missingPaths).toEqual([])
})
}, packDryRunTimeoutMs)
})