Skip to content
This repository was archived by the owner on Aug 10, 2026. It is now read-only.

Bump the dev-dependencies group with 3 updates #1029

Bump the dev-dependencies group with 3 updates

Bump the dev-dependencies group with 3 updates #1029

Workflow file for this run

name: Lint pushes/PRs
on: [push, pull_request]
permissions:
contents: read
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint