docs(middleware): add section on type inference across chained middle… #254
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: autofix.ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| name: autofix | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
| steps: | |
| - name: Checkout | |
| 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:fix | |
| - name: Apply fixes | |
| uses: autofix-ci/action@v1 | |
| with: | |
| commit-message: 'ci: apply automated fixes' |