Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.66 KB

html-validate.md

File metadata and controls

56 lines (35 loc) · 1.66 KB

HTML

This test is validating all used HTML on the url specified. Making use of the html-validate

Differences compared to vanilla html-validate

We are using

  • the built-in preset: --preset standard
  • sitespeed to visit the website
  • sitespeed's HAR file to identify HTML files used during the visit
  • all files whose mimetype contains 'html'

How are rating being calculated?

We are calculating rating based on:

  • Number of different error types
  • Number of total number of errors

we are then combining the results.

Math used are:

  • rating_number_of_error_types = 5.0 - (number_of_error_types / 5.0)
  • rating_number_of_errors = 5.0 - ((number_of_errors / 2.0) / 5.0)

As always, minimum rating are 1.0.

Read more

How to setup?

Prerequirements

  • Fork this repository

Setup with GitHub Actions

Read more on the general page for github actions.

Setup Locally

Windows Specific
  • Allow node to connect through Windows firewall

Using Docker image

FAQ

No frequently asked questions yet :)