Skip to content

Update Node.js to v24 #734

Update Node.js to v24

Update Node.js to v24 #734

Workflow file for this run

name: Run pre-commit checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: 3.11
- name: Install pre-commit
run: |
python -m pip install --upgrade pre-commit==3.7.0
- name: Run pre-commit
run: pre-commit run --all-files