Skip to content

Confirm ATK DPI fixed value encoding #34

Confirm ATK DPI fixed value encoding

Confirm ATK DPI fixed value encoding #34

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Rust dependencies
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: Install frontend dependencies
run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Rust tests
run: cargo test --manifest-path src-tauri/Cargo.toml
- name: Build
run: npm run tauri build