Add SEO CI and fix issues #3
Workflow file for this run
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
--- | |
name: SEO CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
extended: true | |
- name: Serve site | |
run: | | |
hugo serve -c blog/ -b http://localhost:1313 --bind=0.0.0.0 & | |
sleep 10 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
args: --max-redirects 10 -a 403,500,503 . | |
seo_spy_orphan_pages: | |
runs-on: ubuntu-latest | |
name: Check orphan pages | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Checkout SEO Spy | |
uses: actions/checkout@v3 | |
with: | |
repository: 3mdeb/seo-spy | |
path: seo-spy | |
- uses: actions/setup-python@v3 | |
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/actions-hugo@v2 | |
with: | |
extended: true | |
- name: Serve site | |
run: | | |
ls -lah | |
hugo serve --contentDir blog -b http://localhost:1313 --bind=0.0.0.0 & | |
sleep 10 | |
- 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/checkout@v3 | |
with: | |
submodules: true | |
- name: Checkout SEO Spy | |
uses: actions/checkout@v3 | |
with: | |
repository: 3mdeb/seo-spy | |
path: seo-spy | |
- uses: actions/setup-python@v3 | |
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/actions-hugo@v2 | |
with: | |
extended: true | |
- name: Serve site | |
run: | | |
hugo serve -c blog/ -b http://localhost:1313 --bind=0.0.0.0 & | |
sleep 10 | |
- name: Check canonical links | |
uses: 3mdeb/seo-spy-action@main | |
with: | |
domain: 'http://localhost:1313' | |
args: '-c' |