Skip to content

build(deps-dev): bump @types/node from 25.9.3 to 26.0.0 #188

build(deps-dev): bump @types/node from 25.9.3 to 26.0.0

build(deps-dev): bump @types/node from 25.9.3 to 26.0.0 #188

Workflow file for this run

name: TypeScript Lint
on:
pull_request:
push:
paths:
- '.github/workflows/tslint.yml'
- 'src/**/*.ts'
- '__tests__/**/*.ts'
- 'yarn.lock'
- 'package.json'
- 'eslint.config.js'
- '.prettierrc'
jobs:
typescript-lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'yarn'
- name: Install dependencies
run: yarn install --force
- name: Run ESLint
run: yarn lint
- name: Check formatting
run: yarn format:check