Merge pull request #97 from ubiquity-os-marketplace/development #5
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: | |
jobs: | |
format-check: | |
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: Install toolchain | |
run: bun install --frozen-lockfile | |
- name: Eslint | |
run: bun run eslint --fix-dry-run | |
- name: Cspell | |
run: bun run format:cspell | |
- name: Prettier | |
run: bun run prettier --check . |