Skip to content

chore: add basic prettier lint script, lint everything #2

chore: add basic prettier lint script, lint everything

chore: add basic prettier lint script, lint everything #2

Workflow file for this run

name: Prettier Lint
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install dependencies
run: npm install -g prettier
- name: Run Prettier
run: npx prettier --check .