Skip to content

Commit 513afdb

Browse files
committed
add travis CI
1 parent c90b994 commit 513afdb

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: node_js
2+
3+
node_js:
4+
- 'stable'
5+
6+
before_install:
7+
- if [ $TRAVIS_OS_NAME == "linux" ]; then
8+
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
9+
sh -e /etc/init.d/xvfb start;
10+
sleep 3;
11+
fi
12+
13+
install:
14+
- npm install -g vsce
15+
- npm install
16+
17+
script:
18+
- npm run lint
19+
- vsce package

0 commit comments

Comments
 (0)