Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ dist: xenial
language: node_js

node_js:
- "12"
- "14"
- "16"
- "18"
- "20"

env:
global:
Expand All @@ -29,6 +29,8 @@ env:
- MONGODB=3.6.18
- MONGODB=4.0.18
- MONGODB=4.2.7
- MONGODB=5.0
- MONGODB=6.0

cache:
directories:
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ environment:
WATERLINE_ADAPTER_TESTS_DATABASE: sails-mongo
NODE_ENV: test
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"
- nodejs_version: "16"
- nodejs_version: "18"
- nodejs_version: "20"

# Install scripts. (runs after repo cloning)
install:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
adapter:
image: node:12
image: node:16
volumes:
- $PWD:/home/node/sails-mongo
links:
Expand All @@ -15,7 +15,7 @@ adapter:
- bash -c "npm test"

mongo:
image: mongo:4.2
image: mongo:6.0
restart: always
command: "--logpath=/dev/null"
ports:
Expand Down