HTML Proofer: Ignore links to twitter.com. #352
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0.5' | |
bundler-cache: true | |
- name: Bower | |
run: | | |
npm install -g bower | |
bower install | |
- name: Build site | |
run: | | |
bundle exec jekyll build 2> error.log | |
cat >&2 error.log | |
( ! grep -qie Error -e Warn error.log ) | |
- name: Cache HTMLProofer | |
id: cache-htmlproofer | |
uses: actions/cache@v2 | |
with: | |
path: tmp/.htmlproofer | |
key: ${{ runner.os }}-htmlproofer | |
- name: HTMLProofer | |
run: | | |
# Check all links | |
# Don't check links to twitter.com because they return 400 all the time | |
bundle exec htmlproofer ./_site/\ | |
--only-4xx\ | |
--ignore-empty-alt=true\ | |
--allow-hash-href=true\ | |
--enforce-https=false\ | |
--ignore-missing-alt=true\ | |
--swap-urls "https\:\/\/scala\.epfl\.ch:"\ | |
--ignore-urls "/www.twitter.com/"\ | |
--cache '{ "timeframe": { "external": "30d" } }' |