-
Notifications
You must be signed in to change notification settings - Fork 1.4k
53 lines (46 loc) · 1.42 KB
/
ui_tests.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
name: UI Tests
on:
push:
branches: [ "V3" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "V3" ]
paths-ignore:
- "**.md"
concurrency:
# Support push/pr as event types with different behaviors each:
# 1. push: queue up builds
# 2. pr: only allow one run per PR
group: ${{ github.workflow }}-${{ github.event.type }}${{ github.event.pull_request.number }}
# If there is already a workflow running for the same pull request, cancel it
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
e2e_tests:
name: 'Playwright Tests'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: install
working-directory: ./apps/laboratory/
run: npm install --force
- name: Install Playwright Browsers
working-directory: ./apps/laboratory/
run: npx playwright install --with-deps chromium firefox
- name: Run Playwright tests
working-directory: ./apps/laboratory/
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./laboratory/playwright-report/
retention-days: 7