-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (54 loc) · 1.37 KB
/
e2e.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
52
53
54
55
56
57
58
59
60
61
62
name: E2E Test
on:
push:
branches:
- main
paths:
- '.github/workflows/e2e.yml'
- 'pnpm-lock.yaml'
- 'src/**/*.ts'
- 'src/**/*.vue'
- 'tests/e2e/*.spec.ts'
pull_request:
paths:
- '.github/workflows/e2e.yml'
- 'pnpm-lock.yaml'
- 'src/**/*.ts'
- 'src/**/*.vue'
- 'tests/e2e/*.spec.ts'
workflow_dispatch:
concurrency:
group: e2e-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
e2e-tests:
runs-on: ubuntu-latest
env:
DEBUG: 0
PLAYWRIGHT_BROWSERS_PATH: 0
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: /home/runner/.local/share/pnpm/store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Run e2e tests
run: pnpm test-e2e-ci
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: test-results/
retention-days: 30