chore(deps): apply security and in-range upgrades #238
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: Full Test Suite (Labeled PR) | |
| on: | |
| pull_request: | |
| types: [labeled, synchronize] | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| test: | |
| if: contains(github.event.pull_request.labels.*.name, 'full-e2e') | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| shardIndex: [1, 2, 3, 4] | |
| shardTotal: [4] | |
| uses: ./.github/workflows/e2e-run.yml | |
| with: | |
| test-args: "--shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}" | |
| artifact-name: blob-report-${{ matrix.shardIndex }} | |
| report: | |
| needs: test | |
| if: always() && contains(github.event.pull_request.labels.*.name, 'full-e2e') | |
| uses: ./.github/workflows/e2e-report.yml | |
| with: | |
| artifact-pattern: blob-report-* | |
| post-pr-comment: true | |
| integration-test: | |
| if: contains(github.event.pull_request.labels.*.name, 'full-e2e') | |
| uses: ./.github/workflows/integration-run.yml |