feat(docs): silky assistant open/close — grow from the FAB corner #6
This file contains hidden or 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: Docs Lighthouse | |
| on: | |
| pull_request: | |
| paths: | |
| - 'apps/docs/**' | |
| - '.github/workflows/docs-lighthouse.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'apps/docs/**' | |
| - '.github/workflows/docs-lighthouse.yml' | |
| workflow_dispatch: | |
| jobs: | |
| lighthouse: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: apps/docs | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: '24' | |
| - name: Install + build docs | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@11.13.1 --activate | |
| pnpm install --frozen-lockfile | |
| pnpm run build | |
| - name: Lighthouse CI | |
| run: | | |
| pnpm dlx @lhci/cli@0.14.0 autorun --config=./lighthouserc.cjs |