-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (39 loc) · 1.23 KB
/
e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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