-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.travis.yml
30 lines (30 loc) · 911 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
language: node_js
node_js:
- "6"
- "9"
- "10"
- "11"
addons:
chrome: stable
firefox: latest
before_install:
- export CHROME_BIN=chromium-browser
- npm install -g grunt-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
env:
# ---------
# PROJECTS
# ---------
# xtypejs
- PROJECT_DIR=project/xtypejs
# xtypejs extensions
- PROJECT_DIR=project/extensions/xtypejs-extension-custom-types
- PROJECT_DIR=project/extensions/xtypejs-extension-introspection
- PROJECT_DIR=project/extensions/xtypejs-extension-autocamel-name-scheme
# xtypejs name schemes
- PROJECT_DIR=project/name-schemes/xtypejs-name-scheme-compact
- PROJECT_DIR=project/name-schemes/xtypejs-name-scheme-camel
- PROJECT_DIR=project/name-schemes/xtypejs-name-scheme-shortened
- PROJECT_DIR=project/name-schemes/xtypejs-name-scheme-shortened-camel
script: cd $PROJECT_DIR && npm install && npm test