Skip to content

Update typescript-eslint monorepo to v7.14.1 #2975

Update typescript-eslint monorepo to v7.14.1

Update typescript-eslint monorepo to v7.14.1 #2975

Workflow file for this run

name: Prettier check
on: [push, pull_request]
jobs:
check:
name: Format check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["lts/*"]
steps:
- name: 馃П Checkout repository
uses: actions/checkout@v4
- name: 馃敥 Setup PNPM
uses: pnpm/action-setup@v3
with:
version: next-9
standalone: true
- name: 馃敥 Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: 馃殌 Install dependencies
run: pnpm install
- name: 馃殌 Check formatting
run: "pnpm run format:check"