Skip to content

Add MongoDB service to Docker Compose configuration #10

Add MongoDB service to Docker Compose configuration

Add MongoDB service to Docker Compose configuration #10

Workflow file for this run

name: Server CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
working-directory: server
run: npm install
- name: Run server tests
working-directory: server
run: npm test