Skip to content

Commit 1f92452

Browse files
author
basantnema31
committed
Resolve merge conflicts and apply lazy loading to new files
2 parents b406174 + 58fd5e6 commit 1f92452

154 files changed

Lines changed: 18990 additions & 11656 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/playwright.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Playwright E2E Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
timeout-minutes: 15
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: "3.12"
25+
26+
- name: Install dependencies
27+
run: |
28+
cd web-app
29+
npm ci
30+
31+
- name: Install Playwright Browsers
32+
run: |
33+
cd web-app
34+
npx playwright install --with-deps
35+
36+
- name: Run Playwright tests
37+
run: |
38+
cd web-app
39+
npx playwright test
40+
41+
- name: Upload Playwright Report
42+
uses: actions/upload-artifact@v4
43+
if: always()
44+
with:
45+
name: playwright-report
46+
path: web-app/playwright-report/
47+
retention-days: 30

.gitignore

46 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)