-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix linting issues * chore: update github actions * chore: fix broken links
- Loading branch information
Showing
28 changed files
with
349 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,29 +28,26 @@ jobs: | |
- name: Linting markdowns | ||
run: mdl --style=.mdlrc.rb ./content | ||
|
||
- name: Check markdowns links | ||
run: gaurav-nelson/github-action-markdown-link-check@v1 | ||
check-images: | ||
name: Check images | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check images | ||
run: python .github/workflows/check_images.py ./website | ||
|
||
html-proofer: | ||
name: HTML proofer | ||
runs-on: ubuntu-latest | ||
env: | ||
HUGO_VERSION: 0.121.2 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # fetch all history for .GitInfo and .Lastmod | ||
submodules: recursive | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v4 | ||
|
||
- name: Setup Hugo | ||
run: | | ||
|
@@ -67,7 +64,27 @@ jobs: | |
--gc --minify \ | ||
--baseURL "https://docs.pactus.com/" | ||
- name: Check HTML | ||
uses: chabad360/htmlproofer@master | ||
# TODO: Disabled for now to fix the HTML issues | ||
# - name: HTML5Validator | ||
# uses: Cyb3r-Jak3/[email protected] | ||
# with: | ||
# root: public/ | ||
|
||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
directory: "./public" | ||
ruby-version: '3.0' | ||
|
||
- name: Install html-proofer | ||
run: | | ||
gem install html-proofer -v 4.3 | ||
## | ||
## Status code 429: https://http.dev/429 | ||
## Status code 999: https://http.dev/999#linkedin | ||
## Status code 403: https://http.dev/403 | ||
## Status code 0: https://github.com/gjtorikian/html-proofer/issues/716#issuecomment-1162052155 | ||
## | ||
## By swap-urls, we don't get error if we rename or move a document. | ||
- name: Check for broken links | ||
run: htmlproofer --swap-urls 'https\://docs.pactus.org:' --ignore-status-codes "999,429,403,0" --ignore-urls=/github.com/,/cdn./,/discord.gg/,/t.me/,/tools.ietf.org/ ./public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import os | ||
import sys | ||
|
||
def check_image_file_names(root_dir): | ||
for root, _, files in os.walk(root_dir): | ||
for file in files: | ||
if file.lower().endswith(('.png', '.gif')): | ||
if '_' in file: | ||
print(f"Image file {os.path.join(root, file)} should bot have '_' in its path.") | ||
sys.exit(1) | ||
|
||
elif file.lower().endswith(('.jpg', '.jpeg', '.bmp', '.tiff', '.webp')): | ||
print(f"Image file {os.path.join(root, file)} is not a PNG or GIF and is not checked.") | ||
|
||
if __name__ == "__main__": | ||
if len(sys.argv) != 2: | ||
print("Usage: python check_images.py <root_directory>") | ||
sys.exit(1) | ||
|
||
root_directory = sys.argv[1] | ||
check_image_file_names(root_directory) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.