-
-
Notifications
You must be signed in to change notification settings - Fork 236
35 lines (28 loc) · 624 Bytes
/
e2e.yml
File metadata and controls
35 lines (28 loc) · 624 Bytes
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
name: E2E - Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Playwright tests
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.x
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- name: Setup Playwright
run: npx playwright install --with-deps
- name: Run tests
run: pnpm test:e2e