https://github.com/Automattic/mongoose
Raw File
Tip revision: fa246e74ad272adf982351d2d801fa9c200dc337 authored by Valeri Karpov on 06 July 2020, 21:48:09 UTC
chore: release 5.9.22
Tip revision: fa246e7
.travis.yml
language: node_js
sudo: false
node_js: [14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4]
install:
  - travis_retry npm install
before_script:
  - wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-4.0.2.tgz
  - tar -zxvf mongodb-linux-x86_64-ubuntu1604-4.0.2.tgz
  - mkdir -p ./data/db/27017
  - mkdir -p ./data/db/27000
  - printf "\n--timeout 8000" >> ./test/mocha.opts
  - ./mongodb-linux-x86_64-ubuntu1604-4.0.2/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
  - export PATH=`pwd`/mongodb-linux-x86_64-ubuntu1604-4.0.2/bin/:$PATH
  - sleep 2
  - mongod --version
matrix:
  include:
    - name: "đŸ‘•Linter"
      node_js: 10
      before_script: skip
      script: npm run lint
notifications:
  email: false
back to top