Skip to content

feat: Add prettier formatter #4

feat: Add prettier formatter

feat: Add prettier formatter #4

Workflow file for this run

name: Format Check
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Node Formatting
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Check Formatting
run: |
npm ci
npm run format
git diff --exit-code --name-only