.travis.yml
language: node_jsnode_js: - "stable"cache: directories: - "node_modules"install: - npm installservices: - postgresqlenv: global: - NODE_ENV=test - JWT_SECRET=prhhhbefore_script: - psql -c 'create database banka;' -U postgres - psql -c "CREATE USER codepreneur WITH PASSWORD null;" -U postgres - npm run buildscript: - npm testafter_success: - npm run coverage