Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Fix link to validator action site #10

Fix link to validator action site

Fix link to validator action site #10

Workflow file for this run

---
# yamllint disable rule:key-ordering
name: build-audit
on: # yamllint disable-line
pull_request:
branches:
- main
types:
- assigned
- opened
- synchronize
- reopened
jobs:
# yamllint disable rule:line-length
audit-only:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run audit-build-action-hugo using config from tests/config
uses: wildtechgarden/audit-build-action-hugo@main
with:
base-url: "https://example.com/"
build-for-downstream: true
config-file: site.toml
hugo-version: latest
- name: Validate HTML and CSS of website
uses: wildtechgarden/validator-html-action@main
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
use-existing-workspace: "true"
...