Skip to content

Bump JustinBeckwith/linkinator-action from 2.4.4 to 2.4.5 #1047

Bump JustinBeckwith/linkinator-action from 2.4.4 to 2.4.5

Bump JustinBeckwith/linkinator-action from 2.4.4 to 2.4.5 #1047

Workflow file for this run

name: Lint pushes/PRs
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Checkout repository code
uses: actions/checkout@v7.0.1
- name: Set up Python
uses: actions/setup-python@v7.0.0
with:
python-version: 3.x
- name: Install Py dependencies
run: "pip install --only-binary :all: -r requirements-dev.txt"
- name: Install Node.js dependencies
run: cd node.js && npm ci --ignore-scripts
- name: Lint all files
run: nox -s lint-all