Skip to content

chore: bump typescript-eslint from 8.59.1 to 8.59.3 #1903

chore: bump typescript-eslint from 8.59.1 to 8.59.3

chore: bump typescript-eslint from 8.59.1 to 8.59.3 #1903

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-library:
name: Build Library
runs-on: ubuntu-24.04
steps:
- name: Checkout Project
uses: actions/checkout@v6.0.2
- name: Setup pnpm
uses: threeal/setup-pnpm-action@v1.0.0
with:
version: 10.33.4
- name: Install Dependencies
run: pnpm install
- name: Check Types
run: pnpm tsc
- name: Test Library
run: pnpm test
- name: Check Formatting
run: pnpm prettier --check .
- name: Check Lint
run: pnpm eslint
- name: Package Library
run: pnpm pack