Skip to content

Commit

Permalink
fix(ci): skip JSDoc comments without tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jxn-30 committed Nov 22, 2024
1 parent 2e9b73c commit d42149d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/shared.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ export const forEachFile = async callback => {
const processedFiles = [];

for (const comment of comments) {
if (!comment.tags) continue;

const metaFileName = comment.meta?.filename;
if (!metaFileName) continue;

Expand Down

0 comments on commit d42149d

Please sign in to comment.