forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (35 loc) · 702 Bytes
/
.travis.yml
File metadata and controls
35 lines (35 loc) · 702 Bytes
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
28
29
30
31
32
33
34
35
jobs:
include:
- stage: test
language: node_js
node_js:
- 13
- 12
- 10
- 10.3
before_install:
- npm i -g codecov
script:
- npm run verify
- npm run test:ci
after_success:
- codecov
notifications:
email:
on_success: never
on_failure: always
- stage: deploy
branches:
only:
- master
language: node_js
node_js: 13
install: true
before_script:
- chmod +x publish-website.sh
script:
- ./publish-website.sh
notifications:
email:
on_success: never
on_failure: always