Skip to content

Merge pull request #9 from FYP-2024-IQMA/feature/SCRUM-25-User-Manage… #6

Merge pull request #9 from FYP-2024-IQMA/feature/SCRUM-25-User-Manage…

Merge pull request #9 from FYP-2024-IQMA/feature/SCRUM-25-User-Manage… #6

Workflow file for this run

name: Run Backend CI
on:
push:
branches:
- develop
paths:
- "backend/**"
pull_request:
branches:
- develop
paths:
- "backend/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository in Virtual Machine
uses: actions/checkout@v2
- name: Install Dependecies
working-directory: backend
run: |
npm install
- name: Run Tests
working-directory: backend
run: |
npm test