mirror of
https://github.com/longbridge/gpui-component.git
synced 2026-03-27 21:01:30 +00:00
Initialize a Next.js-based documentation site using Fumadocs framework to provide comprehensive guides for all GPUI components. The site includes getting started guides, API references, and documentation for 40+ components including Button, Input, Table, Tree, Chart, and more. --------- Co-authored-by: Jason Lee <huacnlee@gmail.com>
21 lines
386 B
YAML
21 lines
386 B
YAML
name: Test Docs
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- uses: oven-sh/setup-bun@v1
|
|
- name: Install
|
|
working-directory: docs
|
|
run: bun install
|
|
- name: Build
|
|
working-directory: docs
|
|
run: |
|
|
bun run build
|