sails-redis
Version: 
A lightweight Redis adapter for Sails / Waterline.
44 lines (33 loc) • 1.08 kB
YAML
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#   ╔╦╗╦═╗╔═╗╦  ╦╦╔═╗ ┬ ┬┌┬┐┬                           #
#    ║ ╠╦╝╠═╣╚╗╔╝║╚═╗ └┬┘││││                           #
#  o ╩ ╩╚═╩ ╩ ╚╝ ╩╚═╝o ┴ ┴ ┴┴─┘                         #
#                                                       #
# This file configures Travis CI.                       #
# (i.e. how we run the tests... mainly)                 #
#                                                       #
# https://docs.travis-ci.com/user/customizing-the-build #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
language: node_js
node_js:
  - "4"
  - "6"
  - "7"
  - "node"
branches:
  only:
    - master
notifications:
  email:
    - ci@sailsjs.com
#########################################################
# Redis stuff:
#
services:
  - redis-server
before_script:
  - redis-cli FLUSHDB
after_script:
  - redis-cli FLUSHDB
#
#########################################################