Skip to content

Bump @types/node from 18.16.3 to 20.12.8 #219

Bump @types/node from 18.16.3 to 20.12.8

Bump @types/node from 18.16.3 to 20.12.8 #219

Workflow file for this run

# Installs Rust and checks formatting + linting
name: Lint Rust
on:
push:
branches:
- master
pull_request:
paths-ignore:
- "src/**"
- "package.json"
- "yarn.lock"
- "pnpm-lock.yaml"
- "README.md"
concurrency:
group: ci-rs-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
- name: Disable git core.autocrlf on Windows
if: matrix.os == 'windows-latest'
run: git config --global core.autocrlf false
- name: Checkout repository code
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt install libdbus-1-dev libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
- name: Run rustfmt check
run: cargo fmt --all -- --check
working-directory: src-tauri
- name: Run clippy check and deny warnings
run: cargo clippy --all-targets --all-features -- -D warnings
working-directory: src-tauri