Skip to content

fix: wide typescript-eslint to 7.x versions #58

fix: wide typescript-eslint to 7.x versions

fix: wide typescript-eslint to 7.x versions #58

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Clean install
run: npm ci
- name: Lint
run: npm run lint:ci
- name: Test
run: npm run test:ci