Skip to content

Bump @typescript-eslint/eslint-plugin from 8.19.1 to 8.22.0 #238

Bump @typescript-eslint/eslint-plugin from 8.19.1 to 8.22.0

Bump @typescript-eslint/eslint-plugin from 8.19.1 to 8.22.0 #238

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Lint
run: npm run lint
- name: Run Prettier
run: npm run prettier
- name: Run Test
run: npm run test:coverage
- name: Build
run: npm run build