Skip to content

Remove redundant mongodb config #9

Remove redundant mongodb config

Remove redundant mongodb config #9

Workflow file for this run

name: Node.js CI - SEManager
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
env:
MONGODB_URI: "mongodb:https://localhost:27017/serverTestDB"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
# Caching in monorepos
cache-dependency-path: server/package-lock.json
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: 4.4
- run: npm ci
- run: cd server && npm run ci-test