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>
11 lines
516 B
TypeScript
11 lines
516 B
TypeScript
import { fail, warn, markdown } from "danger";
|
|
import { sanityCheckAll } from "./script/action/update-all";
|
|
|
|
sanityCheckAll().then(([errors, warnings]) => {
|
|
errors.forEach(err => fail(err));
|
|
warnings.forEach(err => warn(err));
|
|
if (errors.length > 0 || warnings.length > 0 {
|
|
markdown("Please fix the errors/warnings above. Files can be replaced/renamed in this pull request (using command-line, or GitHub Desktop). Alternatively, you may close this pull request and open a new one.");
|
|
}
|
|
});
|