From 3da72482ba59dad3d073cc1ab9dbe84c9b78d67f Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Thu, 1 May 2025 13:01:16 +0100 Subject: [PATCH] build(actions): added action to test build process --- .gitea/workflows/build.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..be07517 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,21 @@ +name: Build +run-name: ${{ gitea.actor }} is building + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Install Dependencies + run: npm i + + - name: Build Dist + run: npm run build \ No newline at end of file