Skip to content

release: v0.4.0

release: v0.4.0 #43

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
web:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn fmt:check
- run: yarn lint
- run: npx tsc -b --noEmit
- run: yarn test
rust:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- name: Install Tauri system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file \
libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: Swatinem/rust-cache@v2
with:
workspaces: tauri
- run: cargo fmt --check
working-directory: tauri
- run: cargo test
working-directory: tauri