Skip to content

fix: drop stale aria-label, redundant h2 margin, and Evidence Lab cli… #5

fix: drop stale aria-label, redundant h2 margin, and Evidence Lab cli…

fix: drop stale aria-label, redundant h2 margin, and Evidence Lab cli… #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate-html:
name: Validate HTML
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install vnu
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq default-jre
curl -sL https://github.com/validator/validator/releases/latest/download/vnu.jar_dist.zip -o vnu.zip
unzip -q vnu.zip
- name: Validate HTML
run: java -jar dist/vnu.jar --errors-only index.html
check-links:
name: Check Links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: --exclude fonts.googleapis.com --exclude fonts.gstatic.com --exclude d3js.org --exclude localhost --no-progress index.html README.md
fail: true