Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,35 @@ jobs:
- uses: actions/[email protected]
# run markdown linter
- uses: gaurav-nelson/[email protected]

proof-html:
runs-on: ubuntu-latest
steps:
# checkout to the commit that has been pushed
- uses: actions/[email protected]

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install node modules
run: npm install

- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: 'latest'
extended: true

- name: Build
run: |
cd exampleSite
hugo --minify

# Run HTML Proofer
- uses: anishathalye/[email protected]
with:
directory: exampleSite/public
enforce_https: false
ignore_url: "#"