Skip to content

Commit

Permalink
Revert pr-docs-check-container-ssr; add pr-docs-check-ssr.
Browse files Browse the repository at this point in the history
  • Loading branch information
samsrabin committed Apr 30, 2024
1 parent 7326b43 commit bc0a2f1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-docs-check-container-ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
jobs:
docs:
runs-on: ubuntu-latest
container:
image: escomp/base:latest
steps:
- uses: actions/checkout@v1
- uses: samsrabin/sphinx-action@use-escomp-base-container
with:
docs-folder: "doc"
pre-build-command: "git lfs pull --exclude='' --include=''"
pre-build-command: "(cd doc && make fetch-images)"
build-command: "make html"
14 changes: 14 additions & 0 deletions .github/workflows/pr-docs-check-ssr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Pull Request Docs Check"
on:
- pull_request

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: samsrabin/sphinx-action@use-escomp-base-container
with:
docs-folder: "doc/source"
pre-build-command: "git lfs install && git lfs pull --exclude='' --include=''"
build-command: "sphinx-build -W --keep-going -n -b html . _build"

0 comments on commit bc0a2f1

Please sign in to comment.