Vale linting inline config #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Links in PR | |
on: | |
pull_request: | |
jobs: | |
check_links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ruby Dev | |
run: sudo apt-get install ruby-dev | |
- name: Install AsciiDoctor | |
run: sudo gem install asciidoctor | |
- name: Install Rouge | |
run: sudo gem install rouge -v 3.30.0 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.105.0' | |
- name: Build | |
run: hugo --buildFuture | |
- name: Link Checker (hyperlink) | |
uses: untitaker/[email protected] | |
with: | |
args: public | |