-
-
Notifications
You must be signed in to change notification settings - Fork 191
79 lines (62 loc) · 1.97 KB
/
test.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
name: 🧑🔧 Test
on:
push:
branches:
- dev
pull_request:
paths:
- '.github/actions/**/*.yml'
- '.github/workflows/**/*.yml'
- 'packages/**'
- 'wallets/**'
jobs:
test-unit:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Setup Node & Install dependencies
uses: ./.github/actions/setup
- name: Build project
run: pnpm run build
- name: Run tests
run: pnpm run test
test-e2e-headful:
name: Run E2E tests (headful)
runs-on: ubuntu-latest
steps:
- name: Setup Node & Install dependencies
uses: ./.github/actions/setup
- name: Install Foundry
- name: Install Playwright dependencies
run: pnpm dlx [email protected] install-deps
# For now, we only need Chromium.
- name: Install browsers for Playwright
run: pnpm dlx [email protected] install chromium
- name: Build project
run: pnpm run build
- name: Install linux dependencies
run: |
sudo apt-get install --no-install-recommends -y \
xvfb
- name: Build project
run: pnpm run build
- name: Serve MetaMask Test Dapp
run: |
pnpm run serve:test-dapp &
- name: Build cache
run: |
xvfb-run pnpm run build:cache
- name: Run E2E tests (headful)
run: |
xvfb-run pnpm run test:playwright:headful
- name: Archive Playwright report
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: playwright-report-headful
path: |
wallets/metamask/playwright-report-headful/
if-no-files-found: error