We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533fa27 commit ef94d79Copy full SHA for ef94d79
.github/scripts/validate-pr.js
@@ -132,7 +132,7 @@ async function run() {
132
{
133
name: "Check image file size",
134
test: async ({ data, imageFiles }) => {
135
- const MAX_SIZE = 200 * 1024; // 200 KB
+ const MAX_SIZE = 250000; // 250 KB (some leeway for OS rounding)
136
const imageFile = imageFiles.find(f => f.filename === data.image);
137
138
if (!imageFile) return false;
0 commit comments