Skip to content

feat: e2e workflow & timeouts parametrization #305

feat: e2e workflow & timeouts parametrization

feat: e2e workflow & timeouts parametrization #305

Workflow file for this run

name: Main Workflow
on:
pull_request:
types: [opened, synchronize]
branches:
- dev
- main
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
build-image:
uses: ./.github/workflows/build-image.yml
lint:
uses: ./.github/workflows/lint.yml
needs: build
test:
uses: ./.github/workflows/test.yml
needs: lint
e2e-tests:
uses: ./.github/workflows/e2e-tests.yml
needs: test