We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec50da4 commit 7eb0998Copy full SHA for 7eb0998
.gitignore
@@ -2,6 +2,7 @@
2
build
3
build_packages
4
site
5
+yarn.lock
6
7
# common
8
**/.*
.travis.yml
@@ -2,14 +2,29 @@ language: node_js
node_js:
- "4.1"
+cache:
+ yarn: true
+ bundler: true
+ directories:
9
+ - $HOME/.yarn-cache
10
+ - $HOME/.cache/yarn
11
+ - node_modules
12
+
13
+before_install:
14
+ - curl -o- -L https://yarnpkg.com/install.sh | bash
15
+ - export PATH="$HOME/.yarn/bin:$PATH"
16
17
+install:
18
+ - yarn
19
20
before_script:
21
- export DISPLAY=:99.0
22
- sh -e /etc/init.d/xvfb start
- - npm install -g karma
23
- ./nodeserver.sh > /dev/null &
24
25
script:
- - npm run test
26
+ - tsc
27
+ - yarn test
28
29
sudo: false
30
@@ -18,3 +33,4 @@ git:
33
34
notifications:
35
slack: angularbuddies:b6leQM9gkBCW0S7MNDsELpqU
36
0 commit comments