Skip to content

remove package-lock.json #11

remove package-lock.json

remove package-lock.json #11

Workflow file for this run

name: Format Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
format-check:
name: Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: npm install
- name: Run format check
run: npm run format:check