Add robots.txt with sitemap reference #40
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| name: Build | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2.1.2 | |
| with: | |
| bun-version: latest | |
| - name: Install D2 | |
| run: curl -fsSL https://d2lang.com/install.sh | sh -s -- | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build documentation | |
| run: bun run build | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| name: Lint & Format | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| - name: Install dprint | |
| run: | | |
| curl -fsSL https://dprint.dev/install.sh | sh | |
| echo "$HOME/.dprint/bin" >> $GITHUB_PATH | |
| - name: Check formatting (dprint) | |
| run: ~/.dprint/bin/dprint check |