Update 2023-11-06-dh-showcase.md #69
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: htmlproofer test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-html: | |
runs-on: ubuntu-latest | |
steps: | |
# setup | |
- uses: actions/checkout@v3 | |
- name: setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
# test html + internal links | |
- name: test html | |
run: bundle exec rake site:test | |
# test external links | |
- name: test linkrot | |
run: bundle exec rake site:test:linkrot |