Fix RSS in Nav partial (#368) #92
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: test-versions | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
hugo: ['0.106.0', '0.107.0', '0.108.0', '0.108.0', '0.110.0'] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install tools | |
run: | | |
sudo apt install curl jq | |
npm i -g postcss postcss-cli autoprefixer | |
- name: Test with Hugo ${{ matrix.hugo }} | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: ${{ matrix.hugo }} | |
extended: true | |
- name: Build with Hugo ${{ matrix.hugo }} | |
run: | | |
cd exampleSite && HUGO_THEME="hugo-theme-introduction" hugo --themesDir ../.. -v | |
- name: Test HTML from Hugo ${{ matrix.hugo }} | |
run: docker run -v ${GITHUB_WORKSPACE}/public/:/mnt 18fgsa/html-proofer mnt --disable-external |