Skip to content

Bump @typescript-eslint/eslint-plugin from 7.2.0 to 7.3.1 #25

Bump @typescript-eslint/eslint-plugin from 7.2.0 to 7.3.1

Bump @typescript-eslint/eslint-plugin from 7.2.0 to 7.3.1 #25

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: windows-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