Files
Firelink/.github/workflows/ci.yml
T
2026-06-15 10:43:31 +03:30

38 lines
650 B
YAML

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@v6
with:
submodules: recursive
- name: Set up Node.js
uses: actions/setup-node@v6
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