File tree Expand file tree Collapse file tree 5 files changed +68
-56
lines changed Expand file tree Collapse file tree 5 files changed +68
-56
lines changed Original file line number Diff line number Diff line change 1+ name : Check Markdown links
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ markdown-link-check :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : gaurav-nelson/github-action-markdown-link-check@v1
12+ with :
13+ use-quiet-mode : ' yes'
14+ use-verbose-mode : ' no'
15+ config-file : ' mlc_config.json'
16+ folder-path : ' en'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Lint
2+ on :
3+ push :
4+ branches :
5+ - main
6+ pull_request :
7+ workflow_dispatch :
8+ jobs :
9+ lint :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Set up Git repository
13+ uses : actions/checkout@v4
14+ with :
15+ show-progress : ' '
16+ - name : markdownlint-cli2-action
17+ uses : DavidAnson/markdownlint-cli2-action@v9
18+ with :
19+ globs : |
20+ **/*.md
21+ #node_modules
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ {
2+ "ignorePatterns" : [
3+ {
4+ "pattern" : " ^https://.*\\ .crossref\\ .org"
5+ },
6+ {
7+ "pattern" : " ^https://.*\\ .github\\ .com"
8+ },
9+ {
10+ "pattern" : " ^https://dl\\ .acm\\ .org"
11+ },
12+ {
13+ "pattern" : " ^http://purl\\ .org/net/bibteXMP"
14+ },
15+ {
16+ "pattern" : " ^https://.*\\ .jabref\\ .org"
17+ },
18+ {
19+ "pattern" : " \\ .tex\\ .ac\\ .uk/"
20+ },
21+ {
22+ "pattern" : " gitignore\\ .io"
23+ },
24+ {
25+ "pattern" : " en\\ .wikipedia\\ .org"
26+ },
27+ {
28+ "pattern" : " ^https://web.archive.org/"
29+ }
30+ ]
31+ }
You can’t perform that action at this time.
0 commit comments