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

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2 #23

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2 #23

Workflow file for this run

# SPDX-License-Identifier: MIT
name: lints
on:
pull_request:
push:
branches: [master]
jobs:
lint:
name: Lint (ESLint + Prettier)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22.x
- name: Install dependencies
run: npm ci --prefer-offline
- name: eslint
run: npx eslint src/ --max-warnings 0
- name: prettier
run: npx prettier --check src/
- name: audit
run: npm audit --omit=dev