Skip to content

Commit

Permalink
fix: empty type in local table
Browse files Browse the repository at this point in the history
  • Loading branch information
Joaquin Montes committed Aug 22, 2023
1 parent 656798c commit 09b301e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/actions/validate-docs-links/lib/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/validate-docs-links/src/checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export async function validateAllInternalLinks(basePath: string, setFailed: Fail
})

console.log('This PR introduces broken links to the docs:')
console.table(errorTableData, ['link', 'type', 'docPath'])
console.table(errorTableData, ['link', 'errorType', 'docPath'])
} else {
await useComment?.('All broken links are now fixed, thank you!', errorsExist)
console.log("This PR doesn't introduce any broken links to the docs. :D")
Expand Down

0 comments on commit 09b301e

Please sign in to comment.