Skip to content

feat(git): add pull request panel and diffs #281

feat(git): add pull request panel and diffs

feat(git): add pull request panel and diffs #281

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test-tauri:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install CMake
run: command -v cmake >/dev/null 2>&1 || brew install cmake
- name: Rust tests
run: cargo test
working-directory: src-tauri
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- uses: dtolnay/rust-toolchain@stable
- name: Install CMake
run: command -v cmake >/dev/null 2>&1 || brew install cmake
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Tauri debug build
run: npm run tauri -- build --debug --no-bundle