tests #1345
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "tests" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
workflow_dispatch: | |
schedule: | |
- cron: '40 0 * * *' | |
jobs: | |
test-linux: | |
name: Playwright@${{ matrix.playwright}} ${{ matrix.os }} headless=${{ matrix.headless }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
playwright: [1.8.0, 1.12.0, 1.18.0, next, beta] | |
headless: [true, false] | |
exclude: | |
- os: ubuntu-20.04 | |
playwright: 1.0.0 | |
- os: ubuntu-20.04 | |
playwright: 1.1.0 | |
- os: ubuntu-20.04 | |
playwright: 1.2.0 | |
- os: ubuntu-22.04 | |
playwright: 1.23 | |
- os: ubuntu-22.04 | |
playwright: 1.25 | |
- os: ubuntu-22.04 | |
playwright: next | |
- os: ubuntu-20.04 | |
playwright: latest | |
- os: macos-latest | |
playwright: 1.8.0 | |
- os: macos-latest | |
playwright: 1.12.0 | |
- os: macos-latest | |
playwright: 1.18.0 | |
include: | |
- os: ubuntu-22.04 | |
playwright: next | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: ./ | |
- name: Install dependencies | |
run: cd sample && npm install playwright@${{ matrix.playwright }} && npx playwright install | |
# Headless running is the same across OSes | |
- name: Run Playwright (headless) | |
if: ${{ matrix.headless == true }} | |
run: cd sample && node index.js | |
# Headful is different in every OS | |
- name: Run Playwright (headful linux) | |
if: ${{ matrix.headless == false && startsWith(matrix.os, 'ubuntu') }} | |
run: cd sample && HEADFUL=true xvfb-run --auto-servernum -- node index.js | |
- name: Run Playwright (headful windows) | |
if: ${{ matrix.headless == false && startsWith(matrix.os, 'windows') }} | |
run: cd sample && HEADFUL=true node index.js | |
shell: bash | |
- name: Run Playwright (headful mac) | |
if: ${{ matrix.headless == false && startsWith(matrix.os, 'mac') }} | |
run: cd sample && HEADFUL=true node index.js | |