https://github.com/chabad360/htmlproofer
🚀 Test your rendered HTML files to make sure they're accurate. 🚀
https://github.com/chabad360/htmlproofer
actions htmlproofer workflow
Last synced: 11 months ago
JSON representation
🚀 Test your rendered HTML files to make sure they're accurate. 🚀
- Host: GitHub
- URL: https://github.com/chabad360/htmlproofer
- Owner: chabad360
- License: mit
- Created: 2019-10-23T20:16:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T04:03:55.000Z (over 3 years ago)
- Last Synced: 2025-07-01T08:16:58.136Z (12 months ago)
- Topics: actions, htmlproofer, workflow
- Language: Dockerfile
- Homepage:
- Size: 20.5 KB
- Stars: 14
- Watchers: 2
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GitHub Actions for HTMLProofer
gjtorikian/HTMLProofer: Test your rendered HTML files to make sure they're accurate.
🚀
🚀
If you're generating HTML pages, you might want to use it.
This action will test your site using [HTMLProofer](https://github.com/gjtorikian/html-proofer).
## ⭐ Getting Started
This is just a portion of a `workflow.yml` to get you started (for more information scroll down to [⭐ Inputs](#-inputs)):
```yml
...
- name: Check HTML
uses: chabad360/htmlproofer@master
with:
directory: "./public"
```
### ⭐ Inputs
| Key | Description | Required | Default |
| --- | ------------ | :------: | ------- |
| `directory` | The directory to scan. | ✔️ | N/A |
| `arguments` | The arguments to pass to HTMLProofer (see [here](https://github.com/gjtorikian/html-proofer#configuration) for more details) | ❌ | N/A |
#### Usage
```yml
...
- name: Check HTML
uses: chabad360/htmlproofer@master
with:
directory: "./public"
# The directory to scan
arguments: --allow-missing-href
# The arguments to pass to HTMLProofer
```