Skip to content

[e2e] Make tests runnable against dev #50

[e2e] Make tests runnable against dev

[e2e] Make tests runnable against dev #50

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [main]
jobs:
call-pre:
name: .Pre
uses: ./.github/workflows/.pre.yml
call-lint:
name: Lint
uses: ./.github/workflows/lint.yml
needs: call-pre
call-test:
name: Test
if: ${{ always() }}
uses: ./.github/workflows/test.yml
needs: call-lint
call-codeql:
name: CodeQL
if: ${{ always() }}
uses: ./.github/workflows/codeql.yml
needs: call-lint