Allow markdown in aside link #545
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: Test | |
on: | |
push: | |
branches-ignore: | |
- main # tests will be launched by workflow_call from the deploy workflow | |
pull_request: | |
types: [ opened, reopened ] | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
- run: npm ci | |
- name: Lint Markdown | |
run: npm run lint:markdown | |
- name: Lint CSS | |
run: npm run lint:css | |
- name: Lint JavaScript | |
run: npm run lint:js | |
- name: Set Hugo up | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.119.0' | |
extended: true # Prevent error building site: POSTCSS: failed to transform, see https://gohugo.io/troubleshooting/faq/#i-get-this-feature-is-not-available-in-your-current-hugo-version | |
- name: Build with Hugo | |
run: npm run build | |
- name: Build JSDoc | |
run: npm run jsdoc |