Skip to content

docs: adds July 2026 to newsletter archive #30

docs: adds July 2026 to newsletter archive

docs: adds July 2026 to newsletter archive #30

Workflow file for this run

name: Check links
on:
pull_request:
paths:
- 'docs/**'
jobs:
linkchecker:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 7.0.1
with:
persist-credentials: false # since the next step does not need it
- name: Start 11ty dev server
id: server
run: npm start
background: true
- parallel:
- name: Wait for server to be ready
run: npx -y wait-on http://localhost:8080
- name: Install linkchecker
run: pip install linkchecker
- name: Run linkchecker
id: linkchecker
run: linkchecker --config=linkcheckerrc --check-extern -v http://localhost:8080
- name: Stop 11ty
cancel: server