feat(spanner): make affinity keys configurable via spanner_grpc_confi… #2935
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
| on: | |
| pull_request: | |
| name: presubmit-windows | |
| jobs: | |
| units: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20, 22] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 300 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: ^10.0.0 | |
| - run: node --version | |
| - run: bash ci/run_conditional_tests.sh | |
| name: Run windows unit tests | |
| shell: bash | |
| env: | |
| BUILD_TYPE: presubmit | |
| TEST_TYPE: units |