chore: bump autoprefixer from 10.4.13 to 10.4.19 #792
Workflow file for this run
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: "Build Test" | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch submodules | |
run: git submodule update --init --recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "16.x" | |
cache: 'yarn' | |
- run: yarn | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "0.83.1" | |
extended: true | |
- name: Build Site | |
run: | | |
git config core.quotePath false | |
HUGO_ENV=production hugo --minify | |
- name: Check links | |
uses: wjdp/htmltest-action@11acebff5338acdc9363f2a5e4fc0a84f96da64e | |
with: | |
skip_external: true |