Skip to content

deps: update typescript-eslint monorepo to v8.58.1 #3762

deps: update typescript-eslint monorepo to v8.58.1

deps: update typescript-eslint monorepo to v8.58.1 #3762

Workflow file for this run

# SPDX-FileCopyrightText: 2023 HH Partners
#
# SPDX-License-Identifier: MIT
name: Check formatting
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24.14.1
cache: "npm"
- name: Enable Corepack
run: npm install corepack@latest && corepack enable
- name: Install dependencies
run: |-
npm ci
- name: Run Prettier
run: |-
npm run prettier:check