refactor(repo): promote tauri app to repository root

This commit is contained in:
NimBold
2026-06-15 10:33:40 +03:30
parent ab7550d39e
commit 6593f9e76a
346 changed files with 1021 additions and 1490 deletions
+37
View File
@@ -0,0 +1,37 @@
name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
desktop:
name: Desktop checks
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install frontend dependencies
run: npm ci
- name: Build frontend
run: npm run build
- name: Test Rust backend
working-directory: src-tauri
run: cargo test --all-targets