Skip to content

fix(tauri): remove macOS specific titlebar config from base tauri.con… #84

fix(tauri): remove macOS specific titlebar config from base tauri.con…

fix(tauri): remove macOS specific titlebar config from base tauri.con… #84

Workflow file for this run

name: Formatting
on:
push:
branches: [main]
pull_request:
concurrency:
group: fmt-${{ github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --manifest-path src-tauri/Cargo.toml --all -- --check
taplo:
name: taplo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install taplo
uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- name: Check TOML formatting
run: taplo fmt --check --diff