Skip to content

chore: run path-dependent GitHub workflows when the workflow file cha… #21

chore: run path-dependent GitHub workflows when the workflow file cha…

chore: run path-dependent GitHub workflows when the workflow file cha… #21

Workflow file for this run

name: Lint Backend
on:
push:
paths:
- "src-tauri/**"
- ".github/workflows/lint-backend.yml"
jobs:
lint_backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- run: >-
sudo apt-get update &&
sudo apt-get install -y
libgtk-3-dev
libayatana-appindicator3-dev
libwebkit2gtk-4.0-dev
libleptonica-dev
libtesseract-dev
- run: npm ci
- run: npm run build
- run: npm run tauri icon
- uses: actions/cache@v3
with:
key: lint-backend-${{ hashFiles('src-tauri/Cargo.lock') }}
path: |
src-tauri/target
~/.cargo
- run: npm run lint:backend