Skip to content

Add missing ENV

Add missing ENV #5

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
- run: npm ci
- run: cd server && npm run ci-test