We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e758d1 commit c998fbcCopy full SHA for c998fbc
1 file changed
.github/workflows/markdown_links.yml
@@ -61,12 +61,17 @@ jobs:
61
- name: 'Check links'
62
uses: stdlib-js/broken-markdown-url-definitions-action@main
63
id: results
64
+ with:
65
+ exclude: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules
66
timeout-minutes: 120
67
68
# Log the results:
69
- name: 'Log results'
70
run: |
- echo ${{ steps.results.outputs.links }}
71
+ echo "Failures: "
72
+ echo ${{ steps.results.outputs.failures }}
73
+ echo "Warnings: "
74
+ echo ${{ steps.results.outputs.warnings }}
75
echo Status: ${{ steps.results.outputs.status }}
76
timeout-minutes: 2
77
0 commit comments