-
Notifications
You must be signed in to change notification settings - Fork 1
101 lines (85 loc) · 2.22 KB
/
seo.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
name: SEO CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/[email protected]
- name: Test links
uses: 3mdeb/lychee-log-action@main
seo_spy_orphan_pages:
runs-on: ubuntu-latest
name: Check orphan pages
steps:
- name: Checkout repo
uses: actions/[email protected]
with:
submodules: true
- name: Checkout SEO Spy
uses: actions/[email protected]
with:
repository: 3mdeb/seo-spy
path: seo-spy
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r seo-spy/requirements.txt
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
extended: true
- name: Serve site
run: |
npm install postcss-cli
hugo
hugo serve -b http://localhost:1313 --bind=0.0.0.0 &
- name: Check orphan pages
uses: 3mdeb/seo-spy-action@main
with:
domain: "http://localhost:1313"
seo_spy_canonical_links:
runs-on: ubuntu-latest
name: Check canonical links
steps:
- name: Checkout repo
uses: actions/[email protected]
with:
submodules: true
- name: Checkout SEO Spy
uses: actions/[email protected]
with:
repository: 3mdeb/seo-spy
path: seo-spy
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r seo-spy/requirements.txt
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
extended: true
- name: Serve site
run: |
npm install postcss-cli
hugo
hugo serve -b http://localhost:1313 --bind=0.0.0.0 &
- name: Check canonical links
uses: 3mdeb/seo-spy-action@main
with:
domain: 'http://localhost:1313'
args: '-c'