Skip to content

Merge pull request #388 from jupyter/dependabot/github_actions/action… #573

Merge pull request #388 from jupyter/dependabot/github_actions/action…

Merge pull request #388 from jupyter/dependabot/github_actions/action… #573

Workflow file for this run

name: Playwright Tests
on:
push:
branches: '*'
pull_request:
branches: '*'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '18.x'
- name: Install Python dependencies
run: |
python tools/install_pydeps.py
- name: Run Playwright Tests
run: |
pytest --capture=no --verbose -r A --showlocals --tb=native nbclassic/tests/end_to_end