Fix siblings of $ref using allOf in openapi normalizer #105
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: TypeScript Client (Encoding / Decoding Test) | |
| on: | |
| pull_request: | |
| paths: | |
| - samples/client/others/typescript/encode-decode/** | |
| - .github/workflows/samples-typescript-encode-decode.yaml | |
| jobs: | |
| build: | |
| name: Test TypeScript Encoding / Decoding | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| # clients | |
| - samples/client/others/typescript/encode-decode/test | |
| node-version: | |
| - 16 | |
| - 18 | |
| - 20 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install | |
| working-directory: ${{ matrix.sample }} | |
| run: | | |
| npm run preinstall | |
| npm i | |
| - name: Test | |
| working-directory: ${{ matrix.sample }} | |
| run: npm test |