forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (110 loc) · 3.69 KB
/
ui_tests.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: UI Tests
on:
workflow_call:
inputs:
branch:
description: 'The branch to use'
default: 'V3'
required: false
type: string
base-url:
description: 'The web3modal lab url'
default: 'http://localhost:3000/'
required: false
type: string
wallet-url:
description: 'The wallet url'
default: 'https://react-wallet.walletconnect.com/'
required: false
type: string
command:
description: 'The test command to run'
default: 'playwright:test'
required: false
type: string
skip-playwright-webserver:
description: 'Skip setting up a local test server'
default: false
required: false
type: boolean
secure-site-url:
description: 'Secure site SDK url'
default: 'https://secure.walletconnect.com/sdk'
required: false
type: string
secrets:
NEXT_PUBLIC_PROJECT_ID:
required: true
TESTS_NEXTAUTH_SECRET:
required: false
TESTS_MAILSEC_API_KEY:
required: false
jobs:
ui_tests:
name: 'Playwright Tests'
runs-on:
group: ubuntu-runners
timeout-minutes: 15
steps:
- name: checkout
uses: actions/checkout@v4
with:
repository: WalletConnect/web3modal
ref: ${{ inputs.branch }}
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Get installed Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['apps/laboratory']['devDependencies']['@playwright/test'])")" >> $GITHUB_ENV
- name: Install Brave Browser
working-directory: ./apps/laboratory/
run: sudo ./scripts/install-brave-browser.sh
- name: Cache playwright binaries
uses: actions/cache@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}-${{ hashFiles('apps/laboratory/tests/shared/constants/devices.ts') }}
- name: install
run: npm ci
- name: build
run: npm run build
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./apps/laboratory/
run: npm run playwright:install
- name: Run Playwright tests
env:
BASE_URL: ${{ inputs.base-url }}
WALLET_URL: ${{ inputs.wallet-url }}
NEXT_PUBLIC_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_PROJECT_ID }}
SKIP_PLAYWRIGHT_WEBSERVER: ${{ inputs.skip-playwright-webserver }}
NEXTAUTH_SECRET: ${{ secrets.TESTS_NEXTAUTH_SECRET }}
MAILSAC_API_KEY: ${{ secrets.TESTS_MAILSEC_API_KEY }}
NEXT_PUBLIC_SECURE_SITE_SDK_URL: ${{ inputs.secure-site-url }}
CI: true
working-directory: ./apps/laboratory/
run: npm run ${{ inputs.command }}
- name: Run canary with minimal environment config
env:
NEXT_PUBLIC_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_PROJECT_ID }}
CI: true
working-directory: ./apps/laboratory/
run: npm run playwright:test:canary
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./apps/laboratory/playwright-report/
retention-days: 7
- uses: actions/upload-artifact@v3
if: always()
with:
name: screenshots
path: ./apps/laboratory/test-results/
retention-days: 7