-
Notifications
You must be signed in to change notification settings - Fork 15
46 lines (39 loc) · 937 Bytes
/
playwright.yml
File metadata and controls
46 lines (39 loc) · 937 Bytes
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: Playwright Tests
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: gcs
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
working-directory: gcs
run: yarn
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Generate parameter definitions
working-directory: gcs/data
run: python generate_param_definitions.py
- name: Run playwright tests
working-directory: gcs
run: yarn test
env:
CI: true
# Disable Electron sandbox for CI environment
ELECTRON_DISABLE_SANDBOX: 1