Skip to content

Merge pull request #111 from njxue/gh-actions #2

Merge pull request #111 from njxue/gh-actions

Merge pull request #111 from njxue/gh-actions #2

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