fix: path parameters with same name as query parameters are always required in generated TypeScript interfaces #405
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: Build | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| # @see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurrency | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ matrix.os }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| os: [windows-latest, ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
| - uses: ./.github/actions/initialize | |
| - uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: "24.x" | |
| cache: "pnpm" | |
| - run: pnpm i --frozen-lockfile | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Test & Build | |
| run: | | |
| pnpm build | |
| pnpm type-check | |
| pnpm test:code:gen | |
| pnpm lint | |
| pnpm test | |
| env: | |
| CI: true |