Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Bump @typescript-eslint/eslint-plugin from 7.0.1 to 7.9.0 #97

Bump @typescript-eslint/eslint-plugin from 7.0.1 to 7.9.0

Bump @typescript-eslint/eslint-plugin from 7.0.1 to 7.9.0 #97

Workflow file for this run

name: Lint & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["lts/*", latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm test