Skip to content

Commit

Permalink
Add doc site build check
Browse files Browse the repository at this point in the history
  • Loading branch information
alnoki committed Jun 18, 2024
1 parent 6235d2a commit b763cb0
Show file tree
Hide file tree
Showing 2 changed files with 7,611 additions and 6,215 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/verify-doc-site-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
jobs:
build-docs:
defaults:
run:
working-directory: 'doc/doc-site'
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/setup-node@v3'
with:
node-version: 20
- uses: 'pnpm/action-setup@v2'
with:
run_install: false
version: '9.1.2'
- run: 'pnpm install --frozen-lockfile'
- run: 'pnpm build'
name: 'Verify docs site build'
'on':
pull_request:
branches:
- 'main'
paths:
- 'doc/doc-site/**'
- '.github/workflows/verify-doc-site-build.yaml'
workflow_dispatch: null
...
Loading

0 comments on commit b763cb0

Please sign in to comment.