mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
24 lines
397 B
YAML
24 lines
397 B
YAML
name: Prettier Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches-ignore: [ wip/*, draft/*, temp/* ]
|
|
|
|
jobs:
|
|
prettier:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 'lts/*'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run Prettier check
|
|
run: npm run format:check
|