From 3e23d5c03d3b359564c24efa9c53cfdd9ce338fc Mon Sep 17 00:00:00 2001 From: Vomitblood Date: Tue, 6 Aug 2024 21:48:31 +0800 Subject: [PATCH] added github actions workflow --- .github/workflows/build-validation.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build-validation.yml diff --git a/.github/workflows/build-validation.yml b/.github/workflows/build-validation.yml new file mode 100644 index 0000000..c3856b0 --- /dev/null +++ b/.github/workflows/build-validation.yml @@ -0,0 +1,25 @@ +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"