Publish @jojokarlin manifold post #105
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 | |
- name: install gems | |
run: bundle install | |
- name: test html | |
run: bundle exec rake site:test | |
# - name: test linkrot | |
# run: bundle exec rake site:test:linkrot |