-
Notifications
You must be signed in to change notification settings - Fork 328
58 lines (50 loc) · 1.42 KB
/
report-viewer-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
name: Report Viewer e2e Test
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-e2e.yml"
- "report-viewer/**"
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
concurrent_skipping: 'same_content_newer'
skip_after_successful_duplicate: 'true'
test:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install and Build 🔧
working-directory: report-viewer
run: |
npm install
npm run build
- name: Install playwright 🔧
working-directory: report-viewer
run: npx playwright install --with-deps
- name: Run tests 🧪
working-directory: report-viewer
run: |
npm run test:e2e
- name: Upload test results 📤
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: |
report-viewer/test-results
report-viewer/playwright-report
retention-days: 30