12345678910111213141516171819202122232425262728293031323334353637 |
- name: integration-node-latest
- on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
- env:
- TELEMETRY_ENABLED: false
- jobs:
- check_latest_node:
- runs-on: ubuntu-22.04
- strategy:
- matrix:
- python-version: ["3.12.8"]
- split_index: [1, 2]
- node-version: ["node"]
- fail-fast: false
- steps:
- - uses: actions/checkout@v4
- - uses: ./.github/actions/setup_build_env
- with:
- python-version: ${{ matrix.python-version }}
- run-uv-sync: true
- - uses: actions/setup-node@v4
- with:
- node-version: ${{ matrix.node-version }}
- - run: uv run playwright install --with-deps
- - run: |
- uv run pytest tests/test_node_version.py
- uv run pytest tests/integration --splits 2 --group ${{matrix.split_index}}
|