Changed my html #114
This file contains hidden or 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: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.0 | |
| - name: Install HTML Proofer | |
| run: gem install html-proofer | |
| - name: Run HTML Proofer | |
| run: | | |
| for file in $(find . -maxdepth 1 -iname "*.html"); do | |
| htmlproofer $file --disable-external --ignore-urls "/#/" | |
| done |