Skip to content

Bump typescript-eslint from 8.60.0 to 8.60.1 in the eslint group #225

Bump typescript-eslint from 8.60.0 to 8.60.1 in the eslint group

Bump typescript-eslint from 8.60.0 to 8.60.1 in the eslint group #225

Workflow file for this run

name: "CI: tests, linter and build"
on:
workflow_dispatch:
push:
branches:
- main
- develop
- dependencies
- 'dependencies-**'
pull_request:
branches:
- main
- dependencies
jobs:
build:
if: ${{ !contains(github.event.head_commit.message || github.event.pull_request.title || '', '[skip-CI]') }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
name: "node:${{ matrix.node-version }}"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run build
run: npm run build
- name: Run tests
run: npm test -- --ci --coverage --runInBand --coverageReporters=text