C# GenericHost remove state from TokenProvider abstract base class so it makes more sense for JIT requested tokens (for long lived ApiClients with OAuth security schemes) #2598
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: TypeScript clients type checks | |
| on: | |
| pull_request: | |
| paths: | |
| - samples/** | |
| - bin/ts-typecheck-all.sh | |
| - .github/workflows/samples-typescript-typecheck.yaml | |
| jobs: | |
| build: | |
| name: Typecheck TypeScript samples | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 20 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Run type checker | |
| run: ./bin/ts-typecheck-all.sh |