Skip to content

docs: update README.md #6

docs: update README.md

docs: update README.md #6

Workflow file for this run

name: Format
on:
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check