Skip to content

Commit

Permalink
ci(docs): check docs build on PR (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
moskalakamil authored Dec 10, 2024
1 parent 52ad2d8 commit d397f98
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-docs-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check Documentation Build

on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/check-docs-build.yml'
- 'docs/**'
jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Setup
uses: ./.github/actions/setup
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Documentation
run: |
cd docs
yarn install
yarn build

0 comments on commit d397f98

Please sign in to comment.