fix: enhance bootstrap error message #340
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!renovate/*' | |
| jobs: | |
| check-types: | |
| name: Check Types | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: '10.30.3' | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| registry-url: https://registry.npmjs.org | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check TypeScript Types | |
| run: pnpm dlx turbo check-types | |
| - name: Run CommandKit Command Handler Tests | |
| run: pnpm test:commandkit | |
| - name: Check Generated API Docs | |
| run: pnpm docgen:check | |
| - name: Check Prettier Formatting | |
| run: pnpm prettier:check |