-
Notifications
You must be signed in to change notification settings - Fork 706
/
.travis.yml
27 lines (27 loc) · 983 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: node_js
node_js:
- 14 # uses version 14
services:
- postgresql # starts up postgres
addons:
postgresql: '10' # recent postgres version on Travis
dist: xenial # uses xenial environment
notifications:
email:
on_success: change # default: change (only when going from broken to fixed)
on_failure: always # default: always (which is annoying, as it should be)
install:
- npm ci # faster, goes only from package-lock
before_script:
- psql -c 'create database "boilermaker-test";' -U postgres # remember to change this name if you change it elsewhere (e.g. package.json)
script:
- npm test # test the code
- npm run build-client # make the bundle
# before_deploy:
# - rm -rf node_modules # omit from the tarball, since we skip cleanup
# deploy:
# skip_cleanup: true # prevents travis from deleting the build
# provider: heroku
# app: YOUR-HEROKU-APP-NAME-HERE # see README
# api_key:
# secure: YOUR-***ENCRYPTED***-API-KEY-HERE # see README