Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,31 @@ jobs:
- name: Run oxlint
run: bun run lint

format:
name: Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5

- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: bun install

- name: Check code format
run: bun run format:check

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable

- name: Check Rust formatting
working-directory: ./desktop/src-tauri
run: cargo fmt --check

test:
needs: lint
name: Test
needs: [lint, format]
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -44,10 +67,6 @@ jobs:
- name: Install dependencies
run: bun install

- name: Check Rust formatting
working-directory: ./desktop/src-tauri
run: cargo fmt --check

- name: Run Rust tests
working-directory: ./desktop/src-tauri
run: cargo test
Expand Down
3 changes: 3 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
22 changes: 3 additions & 19 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading