From dbbf886de932e9ffee840060a425b4242e057f7a Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 9 Jun 2025 13:14:56 -0500 Subject: [PATCH] add test build --- .gitea/workflows/test-build.yaml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitea/workflows/test-build.yaml diff --git a/.gitea/workflows/test-build.yaml b/.gitea/workflows/test-build.yaml new file mode 100644 index 0000000..43f0a22 --- /dev/null +++ b/.gitea/workflows/test-build.yaml @@ -0,0 +1,34 @@ +name: test-build + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up pnpm + uses: pnpm/action-setup@v4 + with: + version: 10.x + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 22.16.x + cache: pnpm + + - name: Install Dependencies + run: pnpm install + + - name: Build Project + run: pnpm build