Skip to content

Commit

Permalink
♻️ Make minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
alrra committed Oct 13, 2024
1 parent 34cc95d commit 3617de4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Check links from Markdown file
run: ./scripts/check_links/markdown.sh
run: ./scripts/check_links/index.sh

name: Check links

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: ./scripts/lint/markdown.sh

- name: Check links from Markdown file
run: ./scripts/check_links/markdown.sh
run: ./scripts/check_links/index.sh

name: macOS

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: ./scripts/lint/markdown.sh

- name: Check links from Markdown file
run: ./scripts/check_links/markdown.sh
run: ./scripts/check_links/index.sh

name: Ubuntu

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"httpHeaders": [
{
"urls": [
"https://help.github.com"
],
"headers": {
"Accept-Encoding": "br, gzip, deflate"
}
},
"urls": [
"https://help.github.com"
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")/../.." \

check_links() (
npx markdown-link-check@3.12.2 \
--config ./scripts/check_links/markdown_configs.json \
--config ./scripts/check_links/configs.json \
--quiet \
--retry \
"$1"
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint/markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")/../.." \
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

lint() (
npx markdownlint-cli@0.41.0 "$1"
npx markdownlint-cli@0.42.0 "$1"
)

check_markdown_files \
Expand Down

0 comments on commit 3617de4

Please sign in to comment.