Skip to content

chore: Update pre-commit workflow to include setup for Node.js #567

chore: Update pre-commit workflow to include setup for Node.js

chore: Update pre-commit workflow to include setup for Node.js #567

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: actions/setup-node@v3
with:
node-version: "16.x"
- run: npm install
- uses: pre-commit/action@v3.0.0