-
Notifications
You must be signed in to change notification settings - Fork 95
61 lines (57 loc) · 1.45 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
name: Playwright
on:
pull_request:
push:
branches:
- main
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
GITHUB_TOKEN: ${{ github.token }}
jobs:
saucectl:
name: Saucectl
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run saucectl
uses: saucelabs/saucectl-run-action@v4
with:
concurrency: 10
working-directory: "playwright"
reporter:
name: Reporter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
working-directory: playwright
run: npm install
- name: Install Playwright browsers
working-directory: playwright
run: npx playwright install
- name: Run local tests
working-directory: playwright
run: npm run test.local
remote:
name: Remote Grid
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
working-directory: playwright
run: npm install
- name: Run remote tests
working-directory: playwright
run: npm run test.remote