Skip to content

Feature/#522

Feature/#522 #538

Workflow file for this run

name: Connection-CICD
on:
pull_request:
branches: ['develop']
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/[email protected]
with:
node-version: 18.x
cache: 'npm'
- name: Install Backend-Server
run: npm ci
- name: Compile Backend-Server
run: npm run build