diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 7a648919f..8425351ba 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -21,8 +21,12 @@ jobs: timeout-minutes: 15 strategy: matrix: - node-version: [14, 16, 18, 19] - mongodb-version: [4.4] + node-version: [18, 19, 20, 21] + mongodb-version: + - '4.4' + - '5.0' + - '6.0' + - '7.0' fail-fast: false steps: - uses: actions/checkout@v3 diff --git a/package.json b/package.json index d74bfc0ed..5c9bed9b5 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "7.0.0-alpha.1", "description": "The official MongoDB connector for the LoopBack framework.", "engines": { - "node": "14 || 16 || 18" + "node": "18 || 20" }, "author": "IBM Corp.", "main": "index.js", @@ -56,13 +56,5 @@ "semver": "^7.3.7", "should": "^13.2.3", "sinon": "^12.0.1" - }, - "ci": { - "downstreamIgnoreList": [ - "bluemix-metering", - "bluemix-service-broker", - "bluemix-security", - "plan-manager" - ] } }