diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index ce05c9a1e..a2e971540 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -21,7 +21,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - node-version: [10, 12, 14, 16, 17] + node-version: [10, 12, 14, 16, 17, 18] mongodb-version: [4.4] fail-fast: false steps: diff --git a/.travis.yml b/.travis.yml index e15eddc12..78bf44995 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ branches: only: master arch: arm64 +dist: focal services: docker language: node_js node_js: @@ -9,6 +10,7 @@ node_js: - 14 - 16 - 17 + - 18 before_install: | docker run --name=mongodb --publish=27017:27017 --detach mongo:4.4 until docker exec --tty mongodb mongo --port=27017 --eval='db.serverStatus()'