Skip to content

chore(deps): bump @typescript-eslint/parser from 7.18.0 to 8.21.0 #1161

chore(deps): bump @typescript-eslint/parser from 7.18.0 to 8.21.0

chore(deps): bump @typescript-eslint/parser from 7.18.0 to 8.21.0 #1161

Workflow file for this run

name: Build and Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build
env:
CI: true
- name: Lint the project
run: npm run lint