Try to improve Danger rule for PNGs to ignore screenshots (#234)

This commit is contained in:
Jorge Martin Espinosa 2023-03-20 15:09:50 +01:00 committed by GitHub
parent 73b79cadd0
commit 93a77d94c1

View file

@ -107,7 +107,9 @@ if (hasChangedViews) {
}
// Check for pngs on resources
const hasPngs = editedFiles.filter(file => file.toLowerCase().endsWith(".png")).length > 0
const hasPngs = editedFiles.filter(file => {
file.toLowerCase().endsWith(".png") && !file.includes("snapshots/images/") // Exclude screenshots
}).length > 0
if (hasPngs) {
warn("You seem to have made changes to some images. Please consider using an vector drawable.")
}