diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-01-24 09:36:04 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-01-25 12:36:42 +0100 |
commit | 1a867043381805cbe048e5e8c9b7c88d441fc3ce (patch) | |
tree | 8819f9ff9ba3bd22c03ad5ca25ff3070c20219d8 /.drone.yml | |
parent | 9405ff3bbf3647137241b2639fe2c7da8d42311a (diff) | |
download | nextcloud-server-1a867043381805cbe048e5e8c9b7c88d441fc3ce.tar.gz nextcloud-server-1a867043381805cbe048e5e8c9b7c88d441fc3ce.zip |
Use nextcloudci/node
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index f052b1c2517..9f08ab16f89 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,9 +15,14 @@ pipeline: matrix: TESTS: jsunit vue-build-settings: - image: node - commands: - - ./build/vue-builds.sh ./settings/js + image: nextcloudci/node:node-4 + commands: + - cd settings/ + - find js/ -type f -iname 'vue-*' -delete + - npm install + - npm run build + - git status + - bash -c "[[ ! \"`git status --porcelain js/`\" ]] || ( echo 'Uncommited changes in vue build' && exit 1 )" when: matrix: TESTS: vue-build-settings |