Skip to content

Feature/ 12 Setup E2E tests #2

Feature/ 12 Setup E2E tests

Feature/ 12 Setup E2E tests #2

Workflow file for this run

---
name: "CI Pipeline"
on:
push:
branches: ["**"]
pull_request:
jobs:
format:
uses: ./.github/workflows/reusable__format.yaml
with:
COMMIT_HASH: ${{ github.sha }}
tests:
needs: format
uses: ./.github/workflows/reusable__tests.yaml
with:
COMMIT_HASH: ${{ github.sha }}
e2e-tests:
needs: tests
uses: ./.github/workflows/reusable__e2e-testing.yaml
with:
COMMIT_HASH: ${{ github.sha }}