Skip to content

add simple constraint menu #95

add simple constraint menu

add simple constraint menu #95

Workflow file for this run

name: Check Prettier Format
on:
workflow_dispatch:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "22"
- name: Install and Lint
working-directory: frontend/webEditor
run: |
npm install
npx prettier --check ./**/*.html
npx prettier --check ./**/*.css
npx prettier --check ./**/*.ts
npx prettier --check ./**/*.tsx
npx prettier --check ./**/*.json