Skip to content

deps: Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.9.0 #226

deps: Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.9.0

deps: Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.9.0 #226

Workflow file for this run

name: Check the source code
on:
pull_request:
branches:
- main
jobs:
check_code:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4.0.4
with:
node-version: '22.9.0'
- name: Install dependencies
run: npm install
- name: Prettier
run: npm run format
- name: CSpell
run: npm run cspell
- name: ESLint
run: npm run lint