-
Notifications
You must be signed in to change notification settings - Fork 217
63 lines (53 loc) · 1.68 KB
/
playwright.yml
File metadata and controls
63 lines (53 loc) · 1.68 KB
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
name: Playwright Tests
on:
pull_request:
branches:
- dev
- main
jobs:
test:
name: 🧪 ${{ matrix.project }} E2E Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 20
env:
PLAYWRIGHT_BROWSERS_PATH: ${{ matrix.cache_dir }}
PW_CI_REPORTER: dot
PW_CI_WORKERS: ${{ matrix.workers }}
strategy:
fail-fast: false
matrix:
include:
- project: chromium
os: ubuntu-latest
cache_dir: /home/runner/.cache/ms-playwright
workers: 3
# - project: firefox
# os: ubuntu-latest
# cache_dir: ~/.cache/ms-playwright
- project: webkit
os: macos-14
cache_dir: /Users/runner/Library/Caches/ms-playwright
workers: 2
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "yarn"
- name: Install dependencies
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn install --immutable
- name: Write out playwright version
run: yarn --silent playwright --version > .playwright-version
- name: ⚡️ Cache playwright binaries
uses: actions/cache@v4
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 Playwright tests
run: yarn test --project=${{ matrix.project }}