Skip to content

ci(deps): bump commander from 14.0.3 to 15.0.0 in the dev-dependencies group across 1 directory #1135

ci(deps): bump commander from 14.0.3 to 15.0.0 in the dev-dependencies group across 1 directory

ci(deps): bump commander from 14.0.3 to 15.0.0 in the dev-dependencies group across 1 directory #1135

Workflow file for this run

name: Format Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format-check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v7
- name: Use Node.js (LTS)
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Check formatting
# Run formatter in check mode (doesn't modify files)
run: npm run format:check
- name: Format instructions (if check fails)
if: ${{ failure() }}
run: |
echo "::error::Formatting issues detected. Run 'npm run format' locally to fix."