Skip to content

check-maintainers: check monthly if the MAINTAINERS.md reflects the actual roles #30

check-maintainers: check monthly if the MAINTAINERS.md reflects the actual roles

check-maintainers: check monthly if the MAINTAINERS.md reflects the actual roles #30

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Install pip dependencies
run: pip install -r requirements.txt
- name: Linting
run: npm run lint