Skip to content

fix: Status check ignoring #21

fix: Status check ignoring

fix: Status check ignoring #21

Workflow file for this run

name: Check format
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Check foramt
run: npm run format-check