Skip to content

Bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1 #88

Bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1

Bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1 #88

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format:check
- name: Lint
run: npm run lint:static-analysis
- name: Check Types
run: npm run lint:types
- name: Test
run: npm run test