Skip to content

chore(ci): workflow security audit #550

chore(ci): workflow security audit

chore(ci): workflow security audit #550

Workflow file for this run

name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
jobs:
build:
name: Build
uses: ./.github/workflows/.reusable_build.yml
secrets: inherit
build-test-image:
name: Build Test Image
uses: ./.github/workflows/.reusable_test_image.yml
needs: build
secrets: inherit
e2e-tests:
name: E2E Tests
needs: build-test-image
uses: ./.github/workflows/.reusable_e2e_tests.yml
with:
gateway-image: ${{ needs.build-test-image.outputs.image }}
load-test-image-from-artifact: true
secrets: inherit