Skip to content

chore(deps): apply security and in-range upgrades #238

chore(deps): apply security and in-range upgrades

chore(deps): apply security and in-range upgrades #238

Workflow file for this run

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