Update bump #17
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: "test-on-pr" | |
on: [pull_request] | |
jobs: | |
test-tauri: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-22.04, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-22.04' | |
run: | | |
curl -fsSL https://bun.sh/install | bash | |
bun install | |
source /home/runner/.bashrc | |
- name: install dependencies (macos only) | |
if: matrix.platform == 'macos-latest' | |
run: | | |
brew install oven-sh/bun/bun | |
bun install | |
- name: install dependencies (windows only) | |
if: matrix.platform == 'windows-latest' | |
run: | | |
powershell -c "irm bun.sh/install.ps1|iex" | |
bun install | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |