Skip to content

Bump typescript-eslint from 8.2.0 to 8.3.0 #197

Bump typescript-eslint from 8.2.0 to 8.3.0

Bump typescript-eslint from 8.2.0 to 8.3.0 #197

Workflow file for this run

name: Main PR
on:
pull_request:
branches:
- main
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
env:
NODE_OPTIONS: --experimental-vm-modules
run: npm run test
- name: Run App
run: npm --silent run start