mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
on:
|
|
workflow_call:
|
|
inputs:
|
|
registry:
|
|
default: ghcr.io
|
|
type: string
|
|
imageName:
|
|
default: ${{ github.repository }}
|
|
type: string
|
|
imageTag:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
e2e:
|
|
runs-on: ubuntu-22.04
|
|
|
|
env:
|
|
DOCKER_REGISTRY: ${{ inputs.registry }}/${{ inputs.imageName }}/
|
|
DOCKER_TAG: :${{ inputs.imageTag }}
|
|
HIVE_APP_BASE_URL: 'http://localhost:8080'
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: setup environment
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
codegen: false
|
|
actor: test-e2e
|
|
cacheTurbo: false
|
|
|
|
- name: Install Cypress binary
|
|
run: pnpm cypress install
|
|
|
|
- name: patch compose file volumes
|
|
uses: mikefarah/yq@v4.44.2
|
|
with:
|
|
cmd: yq -i 'del(.services.*.volumes)' docker/docker-compose.community.yml
|
|
|
|
- name: run containers
|
|
timeout-minutes: 10
|
|
run: |
|
|
docker compose \
|
|
--env-file docker/.end2end.env \
|
|
-f docker/docker-compose.community.yml \
|
|
-f docker/docker-compose.end2end.yml \
|
|
up -d --wait
|
|
|
|
- name: cypress
|
|
timeout-minutes: 6
|
|
uses: cypress-io/github-action@v5
|
|
env:
|
|
CI: true
|
|
with:
|
|
command: pnpm test:e2e
|
|
install: false
|
|
browser: chrome
|
|
headed: true
|
|
|
|
- name: troubleshoot containers
|
|
if: ${{ failure() }}
|
|
run: |
|
|
docker --version
|
|
docker ps --format json | jq .
|
|
docker compose \
|
|
--env-file docker/.end2end.env \
|
|
-f docker/docker-compose.community.yml \
|
|
-f docker/docker-compose.end2end.yml \
|
|
logs
|
|
|
|
- uses: actions/upload-artifact@v4.3.4
|
|
if: ${{ failure() }}
|
|
with:
|
|
name: cypress
|
|
path: |
|
|
./cypress/videos/**/*
|
|
./cypress/screenshots/**/*
|