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