Skip to content

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 #89

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 #89

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npm run format:check
- name: Run Lint
run: npm run lint
- name: Build
run: npm run build