Skip to content

Add htmlproofer CI workflow (advisory) #5

Add htmlproofer CI workflow (advisory)

Add htmlproofer CI workflow (advisory) #5

Workflow file for this run

---
name: HTML Proofer
on:
pull_request: {}
push:
branches:
- master
workflow_dispatch: {}
permissions:
contents: read
jobs:
html-proofer:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Build site
run: bundle exec jekyll build
- name: Check links (advisory — failures reported but do not block)
continue-on-error: true
run: |
bundle exec htmlproofer _site \
--disable-external \
--ignore-urls "/puppet/,/pe/,/puppetlabs/" \
--allow-hash-href