2020-08-16 13:41:12 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-10-22 21:23:57 +01:00
|
|
|
branches: [ main ]
|
2020-08-16 13:41:12 +01:00
|
|
|
pull_request:
|
2020-10-22 21:23:57 +01:00
|
|
|
branches: [ main ]
|
2020-08-16 13:41:12 +01:00
|
|
|
|
|
|
|
jobs:
|
2022-06-10 14:44:02 +01:00
|
|
|
link-check:
|
2020-08-16 13:41:12 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Link Checker
|
2022-06-10 14:44:02 +01:00
|
|
|
uses: lycheeverse/lychee-action@v1.5.0
|
|
|
|
with:
|
|
|
|
fail: true
|
|
|
|
html-validate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-10 15:04:53 +01:00
|
|
|
- uses: actions/checkout@v2
|
2020-11-02 05:33:44 +00:00
|
|
|
- name: HTML5 Validator
|
2022-06-10 15:02:55 +01:00
|
|
|
uses: Cyb3r-Jak3/html5validator-action@v7.1.1
|
2020-11-02 05:33:44 +00:00
|
|
|
with:
|
2022-02-05 13:56:08 +00:00
|
|
|
root: ./
|