fix: improve smoke test to check syntax and basic functionality
Some checks are pending
Docker Test / test (push) Waiting to run

This commit is contained in:
OpenClaw 2026-03-07 06:08:57 +00:00
parent 7cf2aa0aa4
commit 93e3f08756

View file

@ -7,6 +7,7 @@ const run = (cmd, args, opts = {}) =>
}); });
const main = async () => { const main = async () => {
// Test syntax checks
await run('bash', ['-lc', 'find src -name "*.js" -print0 | xargs -0 -n1 node --check'], { await run('bash', ['-lc', 'find src -name "*.js" -print0 | xargs -0 -n1 node --check'], {
cwd: process.cwd(), cwd: process.cwd(),
}); });