check_node_latest.yml 840 B

12345678910111213141516171819202122232425262728293031323334353637
  1. name: integration-node-latest
  2. on:
  3. push:
  4. branches:
  5. - main
  6. pull_request:
  7. branches:
  8. - main
  9. env:
  10. TELEMETRY_ENABLED: false
  11. jobs:
  12. check_latest_node:
  13. runs-on: ubuntu-22.04
  14. strategy:
  15. matrix:
  16. python-version: ["3.12.8"]
  17. split_index: [1, 2]
  18. node-version: ["node"]
  19. fail-fast: false
  20. steps:
  21. - uses: actions/checkout@v4
  22. - uses: ./.github/actions/setup_build_env
  23. with:
  24. python-version: ${{ matrix.python-version }}
  25. run-uv-sync: true
  26. - uses: actions/setup-node@v4
  27. with:
  28. node-version: ${{ matrix.node-version }}
  29. - run: uv run playwright install --with-deps
  30. - run: |
  31. uv run pytest tests/test_node_version.py
  32. uv run pytest tests/integration --splits 2 --group ${{matrix.split_index}}