Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b03a707
chore: update ci
seriousme Feb 28, 2025
6af0813
chore: modernize dependencies (excluding mongodb)
seriousme Feb 28, 2025
d9bcf48
doc: remove disfunctional badges
seriousme Feb 28, 2025
c262239
Pending changes exported from your codespace
seriousme Mar 15, 2025
c7f4cef
asyncPersistence to mongDB6
seriousme Mar 16, 2025
a4ada45
persistence as front to async
seriousme Mar 16, 2025
4dcb20b
tests converted
seriousme Mar 21, 2025
bfa2764
small fixes
seriousme Mar 22, 2025
7b47c29
final fixes
seriousme Apr 18, 2025
94d17c5
fix ci & coverage
seriousme Apr 18, 2025
70dd65b
apply requested review fixes
seriousme Apr 18, 2025
5e80499
workaround slow mongodb starts
seriousme Apr 22, 2025
9c4cbf5
add MongoDB connectivity check at start of tests
seriousme Apr 23, 2025
eb38000
add wait for mongodb
seriousme Apr 23, 2025
0da7ac9
add docker logging
seriousme Apr 23, 2025
7264073
debugging mongodb in CI
seriousme Apr 23, 2025
df28d13
debugging mongodb in ci again
seriousme Apr 23, 2025
8699f69
debugging mongodb in CI by changing mongodb flags
seriousme Apr 23, 2025
f9f4690
attempt 3 to fix mongodb in CI
seriousme Apr 23, 2025
b5d1344
pull mongo:8 upfront
seriousme Apr 23, 2025
1e5a3c8
tyy only test/own.js
seriousme Apr 23, 2025
7082164
only test/abs.js
seriousme Apr 23, 2025
ec4382c
test both abs.js and own.js again.
seriousme Apr 23, 2025
a438082
monkeypatch abstract.js
seriousme Apr 24, 2025
3df2c59
only abs.js
seriousme Apr 24, 2025
ee5de9f
only own.js
seriousme Apr 24, 2025
3442cef
test both own.js and abs.js
seriousme Apr 24, 2025
477fcaa
using callbackified & promisified
seriousme May 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: ['lts/-1', 'lts/*', 'node']
Comment thread
seriousme marked this conversation as resolved.
Outdated

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install mongo
- name: start mongodb
run: |
docker run -d -p 27017:27017 mongo:latest mongod --setParameter ttlMonitorSleepSecs=2
npm run mongodb
- name: Install
run: |
npm install
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# aedes-persistence-mongodb

![.github/workflows/ci.yml](https://github.com/moscajs/aedes-persistence-mongodb/workflows/.github/workflows/ci.yml/badge.svg)
[![Dependencies Status](https://david-dm.org/moscajs/aedes-persistence-mongodb/status.svg)](https://david-dm.org/moscajs/aedes-persistence-mongodb)
[![devDependencies Status](https://david-dm.org/moscajs/aedes-persistence-mongodb/dev-status.svg)](https://david-dm.org/moscajs/aedes-persistence-mongodb?type=dev)
\
[![Known Vulnerabilities](https://snyk.io/test/github/moscajs/aedes-persistence-mongodb/badge.svg)](https://snyk.io/test/github/moscajs/aedes-persistence-mongodb)
[![Coverage Status](https://coveralls.io/repos/github/moscajs/aedes-persistence-mongodb/badge.svg?branch=master)](https://coveralls.io/github/moscajs/aedes-persistence-mongodb?branch=master)
Expand Down
Loading
Loading