Skip to content
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,17 @@ jobs:
- name: Run markdown-lint
uses: avto-dev/markdown-lint@v1
with:
args: CHANGELOG.md README.md docs/
args: CHANGELOG.md CONTRIBUTING.md README.md docs/
config: '.markdownlint.yml'
- name: Prepare markdown-link-check
run: mkdir docs/ROOT && cp CHANGELOG.md README.md docs/ROOT
- name: Run markdown-link-check
uses: gaurav-nelson/github-action-markdown-link-check@619e549
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'no'
config-file: 'mlc_config.json'
folder-path: 'docs/'
tests:
name: Unit tests
runs-on: ubuntu-latest
Expand Down
9 changes: 9 additions & 0 deletions mlc_config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"ignorePatterns": [
{
"pattern": "^CONTRIBUTING\\.md"
},
{
"pattern": "^https://dl\\.acm\\.org"
},
{
"pattern": "^https://github\\.com"
},
{
"pattern": "^https://.*\\.jabref\\.org"
},
{
"pattern": "^http://purl\\.org/net/bibteXMP"
},
Expand Down