mirror of
https://github.com/Vomitblood/stort.git
synced 2024-11-26 13:55:27 +08:00
26 lines
409 B
YAML
26 lines
409 B
YAML
name: Test Build Frontend
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bun
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: bun install
|
|
run: |
|
|
bun install
|
|
|
|
- name: bun run tauri build
|
|
run: |
|
|
NO_STRIP=true bun run tauri build
|
|
echo "winning ranks"
|