Skip to content

Update dependency eslint to v9.39.2 #200

Update dependency eslint to v9.39.2

Update dependency eslint to v9.39.2 #200

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/**'
jobs:
ci:
name: CI - Node.js ${{ matrix.node-version }} & Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- '22'
- '24'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
registry-url: https://registry.npmjs.org
- run: pnpm install
- run: pnpm test