build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.2.0 to 7.14.1 #1371
Workflow file for this run
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
# This workflow runs lint and type checking scripts | |
name: Quality check (lint + type checking) | |
on: | |
pull_request: | |
jobs: | |
run-linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.13.0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
env: | |
NODE_OPTIONS: '--max_old_space_size=8192' | |
- name: Check types | |
run: npm run check-types | |
env: | |
NODE_OPTIONS: '--max_old_space_size=8192' |