Skip to content

Fix review comments #4649

Fix review comments

Fix review comments #4649

Workflow file for this run

name: E2E Tests
on: push
jobs:
test:
permissions: write-all
timeout-minutes: 35
runs-on: ubuntu-latest-m
env:
TZKT_SYNC_IMAGE: bakingbad/tzkt-sync:1.14.4
TZKT_API_IMAGE: serjonya/tzkt-api:1.14.4-linux
steps:
- uses: actions/checkout@v4
- name: Pull docker images
run: docker compose pull --quiet &
- name: Setup yarn
run: |
corepack enable
yarn set version stable
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
- run: yarn install --immutable
- name: Install Playwright browser
run: yarn workspace @umami/desktop playwright install chromium --with-deps
- run: yarn test:e2e
- name: Cucumber Report to Annotations
uses: deblockt/cucumber-report-annotations-action@v1.16
if: always()
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
path: "apps/dekstop/test-results/cucumber-report.json"
show-global-summary-report: true
- uses: actions/upload-artifact@v4
if: always()
with:
name: cucumber-report
path: apps/dekstop/test-results/cucumber-report.html
retention-days: 10