enable categories with autopages #330
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: HTML Proofer | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Jekyll build | |
env: | |
JEKYLL_ENV: production | |
run: bundle exec jekyll build --destination _proof | |
- name: HTML proofer | |
env: | |
JEKYLL_ENV: production | |
run: bundle exec rake html_proofer |