Skip to content

build(deps): bump multer and @types/multer #10

build(deps): bump multer and @types/multer

build(deps): bump multer and @types/multer #10

Workflow file for this run

name: Desktop
on:
pull_request:
paths:
- "src-tauri/**"
- "src/**"
- "package.json"
- "package-lock.json"
- ".github/workflows/desktop.yml"
push:
branches: [main]
paths:
- "src-tauri/**"
- "src/**"
- "package.json"
- "package-lock.json"
concurrency:
group: desktop-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: macos-14
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: src-tauri
- run: npm ci
- run: npm run build
- run: cargo fmt --manifest-path src-tauri/Cargo.toml -- --check
- run: cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets -- -D warnings
- run: cargo check --manifest-path src-tauri/Cargo.toml