refactor: migrate to aster-forge foundation crates #3
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 Check | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'docs/**' | |
| - '.github/workflows/docs-check.yml' | |
| pull_request: | |
| branches: [master, develop] | |
| paths: | |
| - 'docs/**' | |
| - '.github/workflows/docs-check.yml' | |
| concurrency: | |
| group: docs-check-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Docs build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| defaults: | |
| run: | |
| working-directory: docs | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.3.14' | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile --registry https://registry.npmjs.org | |
| - name: Build documentation | |
| run: bun run docs:build |