-
-
Notifications
You must be signed in to change notification settings - Fork 195
51 lines (40 loc) · 1.1 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
name: 🧑🔧 Test
on:
push:
branches:
- new-dawn
pull_request:
jobs:
test-unit:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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:
name: Run E2E tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node & Install dependencies
uses: ./.github/actions/setup
# For now, we only need Chromium.
- name: Install browsers for Playwright
run: pnpm dlx playwright install chromium
- name: Build project
run: pnpm run build
- name: Run E2E tests (headless)
run: pnpm run test:e2e:headless
- name: Archive Playwright traces
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: playwright-traces
path: |
wallets/metamask/test-results
if-no-files-found: error