Skip to content

feat(ci): add Linux build job and expand README install docs #3

feat(ci): add Linux build job and expand README install docs

feat(ci): add Linux build job and expand README install docs #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run test
package-macos:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- uses: dtolnay/rust-toolchain@stable
- run: npm ci
- run: npx tauri build --bundles app