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

33 lines
636 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 curl -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
- name: bun install
run: |
bun install
- name: bun run tauri build
run: |
NO_STRIP=true bun run tauri build
echo "winning ranks"