Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.32.0 #290

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.32.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.32.0 #290

Workflow file for this run

name: Lint
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- name: type check
run: npm run check
- name: lint
run: npm run lint
# - name: build and check generated types
# run: npm run build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally and commit the changes after you have reviewed them"; git diff; exit 1); }