From 7ae4ef54613ed352636aeb3c431c6b647331949a Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Thu, 7 Aug 2025 19:58:13 -0400 Subject: [PATCH] Added web app building thing. --- .gitea/workflows/build-web-app.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/build-web-app.yaml diff --git a/.gitea/workflows/build-web-app.yaml b/.gitea/workflows/build-web-app.yaml new file mode 100644 index 0000000..c46a5af --- /dev/null +++ b/.gitea/workflows/build-web-app.yaml @@ -0,0 +1,17 @@ +name: Build Web App +on: + push: + paths: + - 'web-app/**' + - '.gitea/workflows/build-web-app.yaml' +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '22.x' + - run: npm ci + - run: npm run build --if-present + - run: npm test