Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
check

GitHub Action

HTMLProofer

v1.1

HTMLProofer

check

HTMLProofer

Test your rendered HTML files to make sure they're accurate

Installation

Copy and paste the following snippet into your .yml file.

              

- name: HTMLProofer

uses: chabad360/htmlproofer@v1.1

Learn more about this action in chabad360/htmlproofer

Choose a version

GitHub Actions for HTMLProofer

🚀 License Release Release 🚀

If you're generating HTML pages, you might want to use it.

 

This action will test your site using HTMLProofer.

⚠️ Note: To use this action, you must have applied to the GitHub Actions public beta. You can apply here.

⭐ Getting Started

This is just a portion of a workflow.yml to get you started (for more information scroll down to ⭐ Inputs):

...
      - 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 for more details) N/A

Usage

...
      - name: Check HTML
        uses: chabad360/htmlproofer@master
        with:
          directory: "./public"
          # The directory to scan
          arguments: --allow-missing-href
          # The arguments to pass to HTMLProofer