Skip to content

minor refactoring #1227

minor refactoring

minor refactoring #1227

Workflow file for this run

on:
push:
pull_request:
jobs:
lint:
name: Lint - Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 22 ]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Enforce resolutions
run: npx npm-force-resolutions
- name: Install dependencies
run: npm install
- name: Type check (TypeScript)
run: npm test
- name: Run ESLint
run: npx eslint . --ext .ts