Skip to content

Streamline deployment workflows #2527

Streamline deployment workflows

Streamline deployment workflows #2527

Workflow file for this run

name: Pull requests
on:
pull_request:
branches:
- main
- releases/*
jobs:
validate:
uses: ./.github/workflows/validate.yml
with:
branch: ${{ github.base_ref }}
lint:
uses: ./.github/workflows/lint.yml
with:
branch: ${{ github.base_ref }}
upload:
needs: [validate]
uses: ./.github/workflows/upload.yml
integration-tests:
needs: [upload]
uses: ./.github/workflows/integration-tests.yml
e2e-tests:
needs: [upload]
uses: ./.github/workflows/e2e-tests.yml
secrets:
AUTIFY_CLI_E2E_AUTIFY_MOBILE_ACCESS_TOKEN: ${{ secrets.AUTIFY_CLI_E2E_AUTIFY_MOBILE_ACCESS_TOKEN }}
github-actions-tests:
needs: [upload]
uses: ./.github/workflows/github-actions-tests.yml