Skip to content

Add e2e tests for unexisting block hashes scenario (#80) #69

Add e2e tests for unexisting block hashes scenario (#80)

Add e2e tests for unexisting block hashes scenario (#80) #69

Workflow file for this run

name: Continuous Integration (Main Branch)
on:
push:
# run CI on any push to the main branch
branches:
- main
jobs:
# run per commit ci checks against main branch
lint-checks:
uses: ./.github/workflows/ci-lint.yml
# run default ci checks against main branch
default-checks:
uses: ./.github/workflows/ci-default.yml
# run e2e testing ci checks against main branch
e2e-tests:
needs: [lint-checks, default-checks]
uses: ./.github/workflows/ci-e2e-tests.yml
# build, tag and publish new service docker images
release-docker-images:
needs: [e2e-tests]
uses: ./.github/workflows/ci-docker-release.yml
with:
dockerhub-username: kavaops
secrets: inherit
# trigger webapp e2e tests against just redeployed internal-testnet
trigger-webapp-e2e-tests:
needs: [ release-docker-images ]
uses: ./.github/workflows/ci-webapp-e2e-tests.yml
secrets: inherit