chore: release v3.2.0 (#1061) #19
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: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run Biome checks | |
| run: bun run biome check app/ components/ lib/ scripts/ content/ --error-on-warnings | |
| - name: Generate llms.txt files | |
| run: bun run generate-llms | |
| env: | |
| LLMS_BASE_URL: https://docs.hiro.so | |
| - name: Run link validation | |
| run: bun run validate-links |