This commit is contained in:
Eugenio Romano 2019-06-18 18:35:20 +01:00
parent f934aa306b
commit fac04a9707
2 changed files with 6 additions and 2 deletions

View File

@ -5,11 +5,11 @@ language: node_js
dist: trusty dist: trusty
sudo: required sudo: required
node_js: node_js:
# Use the explicit NodeJS LTS version 10.16.0 to avoid any automatic upgrade of the version. # Use the explicit NodeJS LTS version 8.9.4 to avoid any automatic upgrade of the version.
- '10.16.0' - '10.16.0'
install: install:
npm install echo "no install"
branches: branches:
only: only:
@ -88,5 +88,6 @@ after_success:
cache: cache:
directories: directories:
- node_modules
- demo-shell/dist - demo-shell/dist
- tmp - tmp

View File

@ -16,5 +16,8 @@ else
./scripts/smart-build.sh -b $TRAVIS_BRANCH -gnu || exit 1; ./scripts/smart-build.sh -b $TRAVIS_BRANCH -gnu || exit 1;
fi; fi;
echo "====== Build Demo shell dist ====="
npm run build:dist || exit 1; npm run build:dist || exit 1;
echo "====== License Check ====="
npm run license-checker npm run license-checker