Skip to content

Feat: Adding logging features plus other updates #2190

Feat: Adding logging features plus other updates

Feat: Adding logging features plus other updates #2190

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:latest
ports:
- 6000:27017
env:
MONGO_TEST_DB: mongodb://localhost:6000
NODE_ENV: test
MONGO_PROD_DB: 'oe'
concurrency: test_environment
steps:
- uses: actions/checkout@v3
- name: Uses Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm run test