-
Notifications
You must be signed in to change notification settings - Fork 194
46 lines (39 loc) · 1.01 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
name: E2E Tests
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
e2e-tests:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
with:
node-version: "18"
- run: yarn install --frozen-lockfile
- name: Build chrome
run: yarn build:chrome
env:
ALBY_OAUTH_CLIENT_ID: ${{ vars.ALBY_OAUTH_CLIENT_ID_CHROME }}
ALBY_OAUTH_CLIENT_SECRET: ${{ vars.ALBY_OAUTH_CLIENT_SECRET_CHROME }}
- name: Test Code
uses: mujo-code/puppeteer-headful@v2
env:
CI: "true"
with:
args: npx playwright test
- name: Artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-artifcats
path: |
playwright-report/
test-results/
retention-days: 30