Skip to content

check format on github #1

check format on github

check format on github #1

Workflow file for this run

name: Formatting
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Prettier check
run: npm run format:check