Add CI using GitHub Actions and htmlproofer. #2
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: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
merge_group: | ||
types: [ checks_requested ] | ||
jobs: | ||
ci: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: jekyll build | ||
run: bundle exec jekyll build | ||
- name: htmlproofer | ||
run: bundle exec htmlproofer _site/ --disable-external=true |