From 4f8c87b6bb140559e34b71aaeaca0adb549437c5 Mon Sep 17 00:00:00 2001 From: Tara Wilson Date: Tue, 18 Mar 2025 19:30:10 -0400 Subject: [PATCH] Adding gitea actions --- .gitea/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 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..6efec37 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,18 @@ +name: Build +run-name: ${{gitea.actor}} is building 🚀 +on: [push] + +jobs: + Build: + runs-on: osx + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Restoring Node Packages + run: | + cd source + yarn install --frozen-lockfile + - name: Build + run: | + cd source + yarn run build \ No newline at end of file