docs: how to disable status code coloring in logger middleware (#553) #252
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: ['*'] | |
| workflow_dispatch: | |
| jobs: | |
| main: | |
| name: 'Main' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.tool-versions' | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: '.tool-versions' | |
| - run: bun install --frozen-lockfile | |
| - run: bun run format | |
| - run: bun run build |