chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2026-03-29 14:01:56 +00:00
parent 7e2d2ede98
commit 52a9076f14

View file

@ -1,13 +1,12 @@
import {spawnSync} from 'node:child_process';
import {test} from 'supertape';
const cliPath = new URL('cloudcmd.js', import.meta.url).pathname;
import info from '../package.json' with {
type: 'json',
}
};
const cliPath = new URL('cloudcmd.js', import.meta.url).pathname;
test('cloudcmd: bin: cli: -h', (t) => {
const {version} = info;
const {stdout} = spawnSync(cliPath, ['-h'], {
encoding: 'utf8',
});