mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
b5384bb9e6
* Infra for errors and warnings. * Most allowlist/denylist consistency errors are warnings only. * Adapt danger to errors+wranings. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
32 lines
711 B
TypeScript
32 lines
711 B
TypeScript
import { sanityCheckAll, consistencyCheckAll } from "../action/update-all";
|
|
|
|
export async function main() {
|
|
var returnCode: number = 0;
|
|
|
|
try {
|
|
const [errors1, warnings1] = await sanityCheckAll();
|
|
// warnings ignored
|
|
if (errors1.length > 0) {
|
|
returnCode = errors1.length;
|
|
}
|
|
} catch(err) {
|
|
console.error(err);
|
|
returnCode = 1;
|
|
}
|
|
|
|
try {
|
|
const [errors1, warnings1] = await consistencyCheckAll();
|
|
// warnings ignored
|
|
if (errors1.length > 0) {
|
|
returnCode = errors1.length;
|
|
}
|
|
} catch(err) {
|
|
console.error(err);
|
|
returnCode = 1;
|
|
}
|
|
|
|
process.exit(returnCode);
|
|
}
|
|
|
|
main();
|