Skip to content

Change cloud killswitch check (#420) #608

Change cloud killswitch check (#420)

Change cloud killswitch check (#420) #608

Workflow file for this run

name: Check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
check_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: Required Dependencies
run: |
sudo apt update
sudo apt install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm
run: npm install -g pnpm
# This step is required to run following steps, as they require the `dist` directory
- name: Build frontend
run: pnpm install --no-frozen-lockfile && pnpm build
- name: Frontend linting
run: |
pnpm lint:check
- name: Backend linting
run: |
cd src-tauri
cargo fmt --all -- --check
cargo clippy -- -D warnings
cd ..