fix: execute _middleware.ts with path parameter when 404
#603
Workflow file for this run
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, next] | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.1.3 | |
| - run: bun install | |
| - run: bunx playwright install chromium | |
| - run: bun run format | |
| - run: bun run lint | |
| - run: bun run build | |
| - run: bun run test | |
| ci-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.1.27 | |
| - run: bun install | |
| - run: bunx playwright install chromium | |
| - run: bun run test |