Skip to content

CI: Add e2e-tests workflow #1

CI: Add e2e-tests workflow

CI: Add e2e-tests workflow #1

Workflow file for this run

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:
build-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
outputs: type=docker,dest=/tmp/e2e.tar
platforms: linux/amd64
tags: |
ghcr.io/dymensionxyz/rollapp:e2e
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: e2e
path: /tmp/e2e.tar
e2e-tests:
needs: build-image
uses: dymensionxyz/e2e-tests/.github/workflows/e2e-test-workflow-call.yml@87611e27234bc9b4b7d191f76a546049fa87d39f

Check failure on line 49 in .github/workflows/e2e_test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e_test.yml

Invalid workflow file

error parsing called workflow ".github/workflows/e2e_test.yml" -> "dymensionxyz/e2e-tests/.github/workflows/e2e-test-workflow-call.yml@87611e27234bc9b4b7d191f76a546049fa87d39f" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
rollapp_ci: "e2e"