-
Notifications
You must be signed in to change notification settings - Fork 39
110 lines (88 loc) · 2.98 KB
/
CI.yml
File metadata and controls
110 lines (88 loc) · 2.98 KB
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
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: "24"
cache: "npm"
- run: npm ci
- run: npm run check:assets
- run: npm run check:html-template
- run: npm run lint
- run: npm run prettier:check
- run: npm run test
- run: npm run tsc
e2e:
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2, 3, 4]
shardTotal: [4]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: "24"
cache: "npm"
- name: Start regtest
env:
COMPOSE_PROFILES: webapp-ci
run: |
git submodule init
git submodule update
chmod -R 777 regtest
git apply boltz.conf.patch
cd regtest
./start.sh
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npm run playwright:install
- name: Run Playwright tests
env:
CI: true
VITE_RSK_LOG_SCAN_ENDPOINT: "http://localhost:8545"
run:
npm run test:e2e -- --shard=${{ matrix.shardIndex }}/${{
matrix.shardTotal }}
- name: Upload blob report to GitHub Actions Artifacts
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v5
with:
name: blob-report-${{ matrix.shardIndex }}
path: blob-report
retention-days: 1
playwright-reports:
if: ${{ !cancelled() }}
needs: [e2e]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: "24"
cache: "npm"
- run: npm ci
- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v5
with:
path: all-blob-reports
pattern: blob-report-*
merge-multiple: true
- name: Merge into HTML Report
run:
npx playwright merge-reports --reporter html
./all-blob-reports
- name: Upload HTML report
uses: actions/upload-artifact@v5
with:
name: html-report-attempt-${{ github.run_attempt }}
path: playwright-report
retention-days: 7