docs: draft changelog #035 (#74) #343
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 Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - 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: Typecheck | |
| run: bun run typecheck | |
| - name: Run cspell | |
| run: bun run spell | |
| - name: Generate llms.txt files | |
| run: bun run generate-llms | |
| env: | |
| LLMS_BASE_URL: https://docs.steel.dev | |
| - name: Run link validation | |
| run: bun run validate-links | |
| - name: Validate external links (lychee) | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --config lychee.toml 'content/docs/**/*.mdx' | |
| fail: true |