Skip to content

Commit a3827e4

Browse files
committed
Bump mongo to 4.4.0
1 parent 3a0937f commit a3827e4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
strategy:
1616
matrix:
1717
include:
18-
- name: Mongo 4.0.4, ReplicaSet, WiredTiger
19-
MONGODB_VERSION: 4.0.4
18+
- name: Mongo 4.4.0, ReplicaSet, WiredTiger
19+
MONGODB_VERSION: 4.4.0
2020
MONGODB_TOPOLOGY: replicaset
2121
MONGODB_STORAGE_ENGINE: wiredTiger
2222
NODE_VERSION: 10

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@
9999
"lint-fix": "eslint --fix --cache ./",
100100
"build": "babel src/ -d lib/ --copy-files",
101101
"watch": "babel --watch src/ -d lib/ --copy-files",
102-
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} mongodb-runner start",
103-
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} TESTING=1 jasmine",
102+
"pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=replicaset} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner start",
103+
"testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=replicaset} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 jasmine",
104104
"test": "npm run testonly",
105-
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} mongodb-runner stop",
106-
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=mmapv1} TESTING=1 nyc jasmine",
105+
"posttest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=replicaset} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} mongodb-runner stop",
106+
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.4.0} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=replicaset} MONGODB_STORAGE_ENGINE=${MONGODB_STORAGE_ENGINE:=wiredTiger} TESTING=1 nyc jasmine",
107107
"start": "node ./bin/parse-server",
108108
"prettier": "prettier --write {src,spec}/{**/*,*}.js",
109109
"prepare": "npm run build",

0 commit comments

Comments
 (0)