Skip to content

Bump actions/setup-node from 5 to 6 in the github-actions group (#42) #66

Bump actions/setup-node from 5 to 6 in the github-actions group (#42)

Bump actions/setup-node from 5 to 6 in the github-actions group (#42) #66

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
pull_request:
branches: ["*"]
types:
# NOTE: these are the defaults
- opened
- synchronize
- reopened
# NOTE: we add this to let the conversion from draft trigger the workflows
- ready_for_review
jobs:
lint:
# Uses pre-commit to run all checks
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v5"
# needed for pre-commit
- uses: "actions/setup-python@v6"
with:
python-version: "3.11"
- uses: "actions/setup-dotnet@v5"
with:
dotnet-version: '8.x'
- uses: "pre-commit/action@v3.0.1"