Search processes with comma-separated queries, incl regexes #16
Workflow file for this run
This file contains 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: Build Check | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: cargo | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install Linux Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y \ | |
build-essential \ | |
pkg-config \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev \ | |
libglib2.0-dev \ | |
libjavascriptcoregtk-4.0-dev \ | |
libsoup-3.0-dev \ | |
libwebkit2gtk-4.1-dev | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build Application | |
run: npm run tauri build |