trustwallet-assets/script/main/check-sanity.ts
Adam R 197613e61c
[internal] Set up Danger build on PR (#3243)
* Return all error messages from checks (to be used by Danger).
* Add Danger dev dep.
* Fix danger.yml + dangerfile.ts.
* Fix root files.
* Finetune Danger message.

Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2020-08-12 10:03:28 +02:00

14 lines
270 B
TypeScript

import { sanityCheckAll } from "../action/update-all";
export async function main() {
try {
const errors = await sanityCheckAll();
process.exit(errors.length);
} catch(err) {
console.error(err);
process.exit(1);
}
}
main();