renovate/tools/verify.mjs
2020-03-29 06:50:46 +02:00

8 lines
139 B
JavaScript

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