bump version 0.2.10 #89
Workflow file for this run
This file contains hidden or 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-test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/.gitignore' | |
| - '**/dependabot.yml' | |
| jobs: | |
| build-on-macOS: | |
| runs-on: "macos-latest" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: install Rust stable | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: install frontend dependencies | |
| run: | | |
| npm install -g pnpm | |
| pnpm install | |
| - name: display version info | |
| run: | | |
| pnpm tauri info | |
| - name: try to build | |
| run: | | |
| pnpm tauri build |