Skip to content

Commit

Permalink
pass down error
Browse files Browse the repository at this point in the history
  • Loading branch information
dangrous committed Nov 17, 2022
1 parent 4b21b7a commit 9eff654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/javascript/reviewerChecklist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function getNumberOfItemsFromReviewerChecklist() {
})
.on('error', (err) => {
console.error(err);
reject();
reject(err);
});
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getNumberOfItemsFromReviewerChecklist() {
})
.on('error', (err) => {
console.error(err);
reject();
reject(err);
});
});
}
Expand Down

0 comments on commit 9eff654

Please sign in to comment.