Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Correct typo in validation script
  • Loading branch information
chriscarrollsmith authored Jan 27, 2024
1 parent c0c25e7 commit 892d12f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
!obj.link ||
!obj.language ||
!obj.pubDate ||
!Array.isArray(obj.items) ||
obj.items.length === 0) {
!Array.isArray(obj.item) ||
obj.item.length === 0) {
console.error('Invalid object');
process.exit(1);
}
Expand Down

0 comments on commit 892d12f

Please sign in to comment.