Skip to content

Format existing files with prettier #5

Format existing files with prettier

Format existing files with prettier #5

Workflow file for this run

name: 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:
node-version: latest
cache: npm
- run: npm ci
- run: npx prettier . --write
- run: git diff --exit-code