Skip to content

call npm run format, add format github action #4

call npm run format, add format github action

call npm run format, add format github action #4

Workflow file for this run

name: Check format
on: [push, pull_request]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Run format check
run: npm run format