Skip to content

Add CI with github actions #1

Add CI with github actions

Add CI with github actions #1

Workflow file for this run

name: Collaboration Service CI
on:
push:
branches:
- main
paths:
- "backend/collaboration-service/**"
pull_request:
branches:
- main
paths:
- "backend/collaboration-service/**"
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install dependencies
run: npm ci
working-directory: backend/collaboration-service
- name: Run Tests
run: npm test
working-directory: backend/collaboration-service