Skip to content

Merge pull request #46 from Himasnhu-AT/patch-scripts #39

Merge pull request #46 from Himasnhu-AT/patch-scripts

Merge pull request #46 from Himasnhu-AT/patch-scripts #39

Workflow file for this run

name: 'Build'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
working-directory: ./apps/server/backend
- name: Build
run: npm run test
working-directory: ./apps/server/backend