renovate/tools/verify.mjs

9 строки
139 B
JavaScript

import shell from 'shelljs';
shell.echo(`Verifying ...`);
const res = shell.exec(`npm whoami`);
if (res.code !== 0) {
shell.exit(2);
}