Merge pull request #18 from talocode/feat/worker-pairing-fingerprint-… #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| desktop-contract-checks: | |
| name: Desktop contract checks | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install Linux desktop dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | |
| - name: Install workspace dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Check task-loop protocol sync | |
| run: pnpm check:task-loop-protocol-sync | |
| - name: Build desktop app | |
| run: pnpm --filter desktop build | |
| - name: Check desktop Tauri crate | |
| run: cargo check --manifest-path apps/desktop/src-tauri/Cargo.toml |