chore: changed example command #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formatting Check | |
on: | |
push: | |
pull_request: | |
jobs: | |
spellcheck: | |
name: Check for formatting errors | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Run formatting checks | |
run: | | |
bun install | |
bun eslint --fix-dry-run --ignore-pattern dist/ | |
bun format:cspell | |
bun prettier --check . |