-
Notifications
You must be signed in to change notification settings - Fork 5
78 lines (62 loc) · 1.58 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
markdown:
name: Lining Markdown files
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install mdl
run: gem install mdl
- 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
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc --minify \
--baseURL "https://docs.pactus.com/"
- name: HTML5Validator
uses: Cyb3r-Jak3/[email protected]
with:
root: public/
- name: Check HTML
uses: chabad360/htmlproofer@master
with:
directory: "./public"