docs: update typedocs #9939
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Build packages | |
run: bun run build | |
# docs: | |
# name: Docs | |
# # This workflow doesn't work on forks | |
# if: github.repository == 'chakra-ui/ark' | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: write | |
# steps: | |
# - name: Checkout branch | |
# uses: actions/checkout@v4 | |
# - name: Install | |
# uses: ./.github/composite-actions/install | |
# - name: Generate TypeDocs | |
# run: bun scripts document:types | |
# - uses: stefanzweifel/git-auto-commit-action@v5 | |
# with: | |
# commit_message: 'docs: update types and storydocs' | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Run tests | |
run: bun run test | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Run lint | |
run: bun run lint | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/composite-actions/install | |
- name: Run typecheck | |
run: bun run typecheck | |
# exports: | |
# name: Check package exports | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout branch | |
# uses: actions/checkout@v4 | |
# - name: Install | |
# uses: ./.github/composite-actions/install | |
# - name: Run exports:check | |
# run: bun run exports:check |