From b3d56babe254d82c83d9e36893c104da1417e087 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 2 May 2022 22:03:02 +0300 Subject: [PATCH] html5valiator.yml: read the documentation more closely https://github.com/Cyb3r-Jak3/html5validator-action/wiki/Getting-Started --- .github/workflows/html5validator.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/html5validator.yml b/.github/workflows/html5validator.yml index b009719..90adc8a 100644 --- a/.github/workflows/html5validator.yml +++ b/.github/workflows/html5validator.yml @@ -1,5 +1,13 @@ name: HTML5 Validator -uses: Cyb3r-Jak3/html5validator-action@v7.1.1 -with: - root: _site/ - blacklist: r or ir +on: + push: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 # Requried will all actions + - uses: Cyb3r-Jak3/html5validator-action@v7.1.1 + - name: Checks HTML5 validity + with: + root: _site/ + blacklist: r or ir