Compare commits

..

2 Commits

Author SHA1 Message Date
3be2274419 Test commit 2024-06-03 13:22:41 +02:00
899520fd3c Added: gitea action for backend 2024-06-03 12:35:07 +02:00

View File

@ -1,29 +0,0 @@
name: Build DeguApp backend
on: pull_request
jobs:
defaults:
run:
working-directory: ./api
build:
runs-on: ubuntu-latest
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