chore(deps): bump the prod-deps group across 1 directory with 16 updates #18
Workflow file for this run
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 - Tauri | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'apps/souls-studio/**' | |
| - '.github/workflows/ci-tauri.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'apps/souls-studio/**' | |
| - '.github/workflows/ci-tauri.yml' | |
| concurrency: | |
| group: ci-tauri-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node and pnpm | |
| uses: ./.github/actions/setup-pnpm | |
| with: | |
| node-version: "20" | |
| - name: Install Rust stable | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: apps/souls-studio/src-tauri -> target | |
| - name: Install Linux dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-deps | |
| - name: Generate changelog JSON | |
| working-directory: apps/souls-studio | |
| run: pnpm run changelog:generate | |
| - name: TypeScript check | |
| working-directory: apps/souls-studio | |
| run: pnpm run typecheck | |
| - name: Rust check | |
| working-directory: apps/souls-studio | |
| run: pnpm run cargo:check |