Skip to content

Test UI

Test UI #1

Workflow file for this run

name: Test UI
on: workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run docker compose
run: docker-compose up --exit-code-from regression || true
- name: Load test report history (if any)
uses: actions/checkout@v4
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Build test report
uses: simple-elf/[email protected]
if: always()
with:
gh_pages: gh-pages
allure_history: allure-history
allure_results: allure-results
- name: Publish test report
uses: peaceiris/actions-gh-pages@v3
if: always()
with:
github_token: ${{ secrets.CI_TOKEN }}
publish_branch: gh-pages
publish_dir: allure-history