Skip to content

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 6.10.0 #595

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 6.10.0

Bump @typescript-eslint/eslint-plugin from 5.60.0 to 6.10.0 #595

Workflow file for this run

name: Build and test
on:
push:
branches: [main, stable]
pull_request:
branches: [main, stable]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16, 18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
- name: Install packages
run: npm ci
- name: Build the code
run: npm run build
- name: Test the code
run: npm test