Skip to content

deps: bump typescript-eslint from 8.53.1 to 8.54.0 #440

deps: bump typescript-eslint from 8.53.1 to 8.54.0

deps: bump typescript-eslint from 8.53.1 to 8.54.0 #440

Workflow file for this run

permissions:
contents: read
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 22.x ]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm run lint
continue-on-error: true
- name: Build project
run: pnpm run build
- name: Run tests
run: pnpm test
continue-on-error: true