Skip to content

Update dependency use-debounce to v10.0.2 #31

Update dependency use-debounce to v10.0.2

Update dependency use-debounce to v10.0.2 #31

Workflow file for this run

name: 'test'
on:
- push
jobs:
test-tauri:
strategy:
fail-fast: false
matrix:
include:
- platform: 'macos-latest'
args: '--target aarch64-apple-darwin'
targetPath: '/aarch64-apple-darwin'
name: 'macos-aarch64'
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin'
targetPath: '/x86_64-apple-darwin'
name: 'macos-x86_64'
- platform: 'ubuntu-22.04'
args: ''
targetPath: ''
name: 'linux'
- platform: 'windows-latest'
args: ''
targetPath: ''
name: 'windows'
runs-on: ${{ matrix.platform }}
steps:
- uses: ilammy/setup-nasm@v1
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: pnpm/action-setup@v4
with:
version: 9
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: pnpm install
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
args: ${{ matrix.args }}
- uses: actions/upload-artifact@v2
with:
name: tauri-artifact-${{ matrix.name }}
path: './src-tauri/target${{ matrix.targetPath }}/release/bundle'