-
-
Notifications
You must be signed in to change notification settings - Fork 43
31 lines (30 loc) · 783 Bytes
/
e2e.yml
File metadata and controls
31 lines (30 loc) · 783 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
name: E2E
on:
push:
branches:
- "**"
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- run: pnpm submodules
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- run: pnpm install
- run: pnpm exec playwright install --with-deps
- run: pnpm run build
- run: pnpm e2e