chore(deps): update typescript-eslint monorepo to v8.11.0 (#174) #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |