Skip to content

Commit

Permalink
better debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
dandlezzz committed Oct 14, 2024
1 parent 72d028f commit 3f9c16a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/validate-and-merge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function validateAndMerge() {
const isValid = requiredKeys.every(key => key in document);

if (!isValid) {
console.log(document + ' is missing required keys');
console.log(JSON.stringify(document) + ' is missing required keys');
return;
}

Expand Down

0 comments on commit 3f9c16a

Please sign in to comment.