-
Notifications
You must be signed in to change notification settings - Fork 7
64 lines (52 loc) · 1.64 KB
/
playwright.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
63
64
name: Playwright Tests
on:
pull_request:
branches:
- main
jobs:
test:
name: 🧪 ${{ matrix.project }} E2E Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
include:
- project: chromium
os: ubuntu-latest
cache_dir: ~/.cache/ms-playwright
- project: firefox
os: ubuntu-latest
cache_dir: ~/.cache/ms-playwright
- project: webkit
os: macos-14
cache_dir: ~/Library/Caches/ms-playwright
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Write out playwright version
run: yarn --silent playwright --version > .playwright-version
- name: ⚡️ Cache playwright binaries
uses: actions/cache@v3
id: playwright-cache
with:
path: ${{ matrix.cache_dir }}
key: ${{ runner.os }}-${{ matrix.project }}-pw-${{ hashFiles('**/.playwright-version') }}
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: yarn playwright install --with-deps ${{ matrix.project }}
- name: Run yarn build
run: yarn build
- name: Run Playwright tests
run: yarn test --project=${{ matrix.project }}
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: playwright-report