Skip to content

Update Broken Links / Migrate to HTTPS #1

Update Broken Links / Migrate to HTTPS

Update Broken Links / Migrate to HTTPS #1

Workflow file for this run

name: Check Links
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 8 * * 1'
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build site
run: bundle exec jekyll build
- name: Restore htmlproofer cache
uses: actions/cache@v4
with:
path: tmp/.htmlproofer
key: htmlproofer-${{ runner.os }}-${{ hashFiles('tmp/.htmlproofer/cache.json') }}
restore-keys: htmlproofer-${{ runner.os }}-
- name: Check links
run: _scripts/check-links