Skip to content

Commit

Permalink
Merge pull request #779 from econia-labs/ECO-1879
Browse files Browse the repository at this point in the history
[ECO-1879] Add doc site build check
  • Loading branch information
CRBl69 authored Jun 20, 2024
2 parents 5066989 + b763cb0 commit 249c262
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 249c262

Please sign in to comment.