feat(typescript): Update isomorphic-fetch file to allow for response streaming #124
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: | |
| - 20 | |
| - 22 | |
| - 24 | |
| 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 |