Skip to content

Bump @eslint/js from 9.39.5 to 10.0.1 #75

Bump @eslint/js from 9.39.5 to 10.0.1

Bump @eslint/js from 9.39.5 to 10.0.1 #75

Workflow file for this run

name: Lint
on:
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup node
uses: actions/setup-node@v7
with:
node-version: 26
cache: "npm"
- name: Install requirements
run: npm ci
- name: Prettier
run: npx prettier -c src/ README.md .github/workflows
- name: ES lint
run: npx eslint --ignore-path .gitignore .
- name: Stylelint
run: npx stylelint '**/*.css'