fix: compositor dispatch edge cases, workspace scroll monitor match, tray hot-reload #1417
Workflow file for this run
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: Website CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-deploy: | |
| name: Test Docusaurus build | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: website | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| cache-dependency-path: ./website/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm i | |
| working-directory: ./website | |
| - name: Build website | |
| run: pnpm build | |
| working-directory: ./website | |
| - name: Install mdbook | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: mdbook | |
| - name: Build developer guide | |
| run: mdbook build docs/ | |
| working-directory: . |