Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

updated @egomobile/mongo to 2.0.0 to support MongoDB 5 #9

updated @egomobile/mongo to 2.0.0 to support MongoDB 5

updated @egomobile/mongo to 2.0.0 to support MongoDB 5 #9

Workflow file for this run

name: Check pull requests
on:
pull_request:
types: ["opened", "edited", "reopened", "synchronize"]
jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
# - name: Run tests
# run: npm run test
- name: Build library
run: npm run build
- name: Generate documentation
run: npm run docs:generate