Improve test and build scripts

This commit is contained in:
Crawl
2017-05-13 18:58:56 +02:00
parent eab5c9e7f1
commit b4645685aa
3 changed files with 1 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ jobs:
- stage: test
script: bash ./deploy/test.sh
- stage: build
node_js: "6"
script: bash ./deploy/deploy.sh
env:
global:

View File

@@ -4,7 +4,6 @@
set -e
function build {
npm run lint
npm run docs
VERSIONED=false npm run webpack
}

View File

@@ -5,7 +5,6 @@ set -e
function tests {
npm run lint
npm run docs:test
VERSIONED=false npm run webpack
exit 0
}