From 6818145662cec7c3297f4fc92342a42545867f77 Mon Sep 17 00:00:00 2001 From: Filip Rojek Date: Mon, 3 Jun 2024 12:35:07 +0200 Subject: [PATCH] Added: gitea action for backend --- .gitea/workflows/build.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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..3254c5b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,28 @@ +name: Build DeguApp backend + +on: pull_request + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./api + + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Set up Node.js and TypeScript + uses: actions/setup-node@v1 + with: + node-version: "20.14.0" + + - name: change directory to api/ + + - name: npm install, build and test + run: | + npm install + npm run build --if-present + npm run test +