File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 5
5
before_script :
6
6
- export DISPLAY=:99.0
7
7
- sh -e /etc/init.d/xvfb start
8
- - npm install -g karma
9
- - npm install -g typescript
10
8
- ./nodeserver.sh > /dev/null &
11
9
12
10
matrix :
26
24
script :
27
25
- echo "CORE_BRANCH = x${CORE_BRANCH}x";
28
26
- >
29
- if [ "x${CORE_BRANCH}x" != "xx" ] ; then
30
- git clone --depth=10 --branch="${CORE_BRANCH}" https://github.com/ui-router/core.git ui-router-core && npm install ./ui-router-core ;
27
+ if [ "x${CORE_BRANCH}x" != "xx" ] ; then
28
+ echo "Installing ui-router-core from ${CORE_BRANCH}" && \
29
+ git clone --depth=10 --branch="${CORE_BRANCH}" https://github.com/ui-router/core.git ui-router-core && \
30
+ pushd ui-router-core && \
31
+ npm install && \
32
+ npm run build && \
33
+ popd && \
34
+ npm install ./ui-router-core ;
31
35
fi
32
- - npm run build
36
+ - npm run build && npm test
33
37
34
38
sudo : false
35
39
You can’t perform that action at this time.
0 commit comments