Skip to content

fix(docs): correct typo in README.md #760

fix(docs): correct typo in README.md

fix(docs): correct typo in README.md #760

Workflow file for this run

name: Check formatting
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install -D --frozen-lockfile
- name: Run Prettier to check formatting
run: bun run prettier --check **/*.{ts,tsx,css,md}