Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/validate-pr.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async function run() {
{
name: "Check image file size",
test: async ({ data, imageFiles }) => {
const MAX_SIZE = 200 * 1024; // 200 KB
const MAX_SIZE = 250000; // 250 KB (some leeway for OS rounding)
const imageFile = imageFiles.find(f => f.filename === data.image);

if (!imageFile) return false;
Expand Down
Loading