Skip to content

Add prettier workflow #1

Add prettier workflow

Add prettier workflow #1

Workflow file for this run

name: Run Prettier
on:
push:
branches: [main, enes/prettier]
jobs:
prettier:
runs-on: ubicloud-standard-4
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
- run: npm ci
- run: npx prettier . --write
- run: git diff --exit-code