diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml index d470cda..984a732 100644 --- a/.forgejo/workflows/demo.yml +++ b/.forgejo/workflows/demo.yml @@ -1,6 +1,15 @@ -on: [push] +name: HTML Check + +on: + push: + + jobs: - test: - runs-on: docker + build: + runs-on: ubuntu-latest steps: - - run: echo All Good + - uses: actions/checkout@v2 # Requried will all actions + - name: Checks HTML5 + uses: Cyb3r-Jak3/html5validator-action@ + with: + root: /index.html