docs(storage): add gaxios migration guide #8307
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
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| name: presubmit-windows | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| shard-matrix: ${{ steps.set-matrix.outputs.shard_matrix }} | |
| shard-total: ${{ steps.set-matrix.outputs.shard_total }} | |
| steps: | |
| - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 | |
| with: | |
| fetch-depth: 2 | |
| persist-credentials: false | |
| - id: set-matrix | |
| uses: ./.github/actions/calculate-shard-matrix | |
| units: | |
| needs: setup | |
| name: units (Node ${{ matrix.node-version }}, Shard ${{ matrix.shard-index }}) | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22, 24, 26] | |
| shard-index: ${{ fromJSON(needs.setup.outputs.shard-matrix) }} | |
| steps: | |
| - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 | |
| with: | |
| fetch-depth: 2 | |
| persist-credentials: false | |
| - uses: ./.github/actions/run-unit-tests | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| shard-total: ${{ needs.setup.outputs.shard-total }} | |
| shard-index: ${{ matrix.shard-index }} | |
| # Dummy jobs to satisfy branch protection requirements for each node version | |
| units-status: | |
| name: units (${{ matrix.node-version }}) | |
| needs: units | |
| runs-on: ubuntu-latest | |
| if: always() | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22, 24, 26] | |
| steps: | |
| - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 | |
| with: | |
| persist-credentials: false | |
| - name: Check shard status | |
| uses: ./.github/actions/check-shard-status | |
| with: | |
| node-version: ${{ matrix.node-version }} |