mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-18 00:32:03 +03:00
25 lines
521 B
YAML
25 lines
521 B
YAML
|
name: "tests grid"
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
env:
|
||
|
FORCE_COLOR: 1
|
||
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: "Grid"
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-node@v3
|
||
|
- run: npm ci
|
||
|
env:
|
||
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
||
|
- run: npm run build
|
||
|
- run: npx playwright install
|
||
|
- run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test -- --retries=0
|
||
|
env:
|
||
|
PWTEST_MODE: service-grid
|