Skip to content

Commit

Permalink
Merge pull request #9767 from marmelab/ci-doc-check
Browse files Browse the repository at this point in the history
chore: add a doc check ci job
  • Loading branch information
fzaninotto committed Apr 10, 2024
2 parents b8dd57f + b64d5f2 commit ae7c8ef
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ name: "Test - action"

on:
push:
paths-ignore:
- 'docs/**'
branches:
- master
- next
pull_request:
paths-ignore:
- 'docs/**'

jobs:
typecheck:
Expand All @@ -29,6 +25,14 @@ jobs:
- name: Build
run: make build

doc-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Jekyll build
run: docker run -v="${PWD}/docs:/site" bretfisher/jekyll build

unit-test:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 2 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
liquid:
error_mode: strict

0 comments on commit ae7c8ef

Please sign in to comment.