Skip to content

fix: handle missing releases in PowerShell #19

fix: handle missing releases in PowerShell

fix: handle missing releases in PowerShell #19

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
checks:
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Install JavaScript dependencies
run: npm ci
- name: Install libmpv development files
shell: powershell
run: npm run setup:mpv
- name: Check frontend
run: npm run check
- name: Build frontend
run: npm run build
- name: Check Rust formatting
run: cargo fmt --manifest-path src-tauri/Cargo.toml -- --check
- name: Test Rust
run: cargo test --manifest-path src-tauri/Cargo.toml
- name: Lint Rust
run: cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets