stort/.github/workflows/build-validation.yml

31 lines
528 B
YAML

name: Test Build Frontend
on:
push:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
container:
image: oven/bun
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rustup and Cargo
run: |
apt update
apt install rustup cargo -y
- name: bun install
run: |
bun install
- name: bun run tauri build
run: |
NO_STRIP=true bun run tauri build
echo "winning ranks"