https://github.com/Automattic/mongoose
Raw File
Tip revision: 6e339de7997d4bc71244e0dabce6095f81044827 authored by Valeri Karpov on 15 October 2018, 17:19:56 UTC
chore: release 5.3.4
Tip revision: 6e339de
.travis.yml
language: node_js
sudo: false
node_js: [10, 9, 8, 7, 6, 5, 4]
install:
  - travis_retry npm install
before_script:
  - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.6.tgz
  - tar -zxvf mongodb-linux-x86_64-3.6.6.tgz
  - mkdir -p ./data/db/27017
  - mkdir -p ./data/db/27000
  - printf "\n--timeout 8000" >> ./test/mocha.opts
  - ./mongodb-linux-x86_64-3.6.6/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
  - sleep 2
matrix:
  include:
    - name: "đŸ‘•Linter"
      node_js: 10
      before_script: skip
      script: npm run lint
notifications:
  email: false
back to top