Skip to content

fix: harden commitment creation wizard and draft recovery #151

fix: harden commitment creation wizard and draft recovery

fix: harden commitment creation wizard and draft recovery #151

Workflow file for this run

# .github/workflows/format-check.yml
# Runs Prettier format check on every PR and push to main/master.
name: Format Check
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
format:
name: Prettier Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check