-
Notifications
You must be signed in to change notification settings - Fork 405
/
.travis.yml
34 lines (28 loc) · 934 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
28
29
30
31
32
33
34
language: node_js
addons:
chrome: stable
before_install:
# version lifted from `.nvmrc`
- nvm install
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.19.0
- export PATH="$HOME/.yarn/bin:$PATH"
before_script:
- yarn run setup
- npx lerna add @pattern-lab/engine-mustache --scope=@pattern-lab/core
- npx lerna add @pattern-lab/engine-handlebars --scope=@pattern-lab/core
- npx lerna add @pattern-lab/engine-underscore --scope=@pattern-lab/core
- npx lerna add @pattern-lab/engine-liquid --scope=@pattern-lab/core
- npx lerna add @pattern-lab/engine-twig --scope=@pattern-lab/core
- npx lerna add @pattern-lab/engine-react --scope=@pattern-lab/core
script: travis_wait yarn run test
branches:
only:
- master
- dev
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/a14f537f16b0756d9470
on_success: always
on_failure: always
on_start: never