Using two rollapps to test state finalization in freeze rollapp #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
# trigger workflow if PR is opened directly as R4R. | |
- opened | |
# trigger workflow if changes are pushed to the branch. | |
- synchronize | |
# trigger workflow if PR is marked ready for review. | |
- ready_for_review | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
- "LICENSE" | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
# e2e-tests-by runs the actual go test command to trigger the test. | |
rollapp-evm: | |
strategy: | |
matrix: | |
tests: | |
- "e2e-test-ibc-success-evm" | |
- "e2e-test-ibc-timeout-evm" | |
- "e2e-test-ibc-grace-period-evm" | |
- "e2e-test-eibc-fulfillment-evm" | |
- "e2e-test-transfer-multi-hop-evm" | |
- "e2e-test-pfm-with-grace-period-evm" | |
- "e2e-test-batch-finalization-evm" | |
- "e2e-test-rollapp-freeze-evm" | |
- "e2e-test-other-rollapp-not-affected-evm" | |
- "e2e-test-rollapp-genesis-event-evm" | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: dymensionxyz/e2e-tests | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.4" | |
- name: Rollapp-EVM E2E Tests | |
run: | | |
make ${{ matrix.tests }} | |
rollapp-wasm: | |
strategy: | |
matrix: | |
tests: | |
- "e2e-test-ibc-success-wasm" | |
- "e2e-test-ibc-timeout-wasm" | |
- "e2e-test-ibc-grace-period-wasm" | |
- "e2e-test-eibc-fulfillment-wasm" | |
- "e2e-test-transfer-multi-hop-wasm" | |
- "e2e-test-pfm-with-grace-period-wasm" | |
- "e2e-test-batch-finalization-wasm" | |
- "e2e-test-rollapp-freeze-wasm" | |
- "e2e-test-other-rollapp-not-affected-wasm" | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: dymensionxyz/e2e-tests | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.4" | |
- name: Rollapp-Wasm E2E Tests | |
run: make ${{ matrix.tests }} |