Skip to content

chore(deps): bump serde from 1.0.192 to 1.0.193 in /src-tauri #718

chore(deps): bump serde from 1.0.192 to 1.0.193 in /src-tauri

chore(deps): bump serde from 1.0.192 to 1.0.193 in /src-tauri #718

Workflow file for this run

name: DeployCheck
on: pull_request
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
environment: starter
steps:
- uses: actions/checkout@v3
- uses: fregante/setup-git-user@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev librsvg2-dev libayatana-appindicator3-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: Sync node version and setup cache
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install app dependencies and build web
run: yarn
- name: Build the app
uses: tauri-apps/tauri-action@v0