Skip to content

chore(deps): update typescript-eslint monorepo to v8.11.0 (#174) #185

chore(deps): update typescript-eslint monorepo to v8.11.0 (#174)

chore(deps): update typescript-eslint monorepo to v8.11.0 (#174) #185

name: Check code quality
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-code-quality:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- name: Run tests with ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: npm install
run: npm ci --no-audit --no-fund
- name: validate renovate config
run: npx --package renovate -c 'renovate-config-validator'
- name: lint
run: npm run lint