diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-02-19 08:37:14 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-19 11:17:37 +0100 |
commit | 774b0b36625715507242c38b2b8d0be4726264fe (patch) | |
tree | 631c7d376bcab23cd1395f29ea1fa5695ba11787 /.drone.yml | |
parent | 5254c441a66c8ca44b3c17526edd0116109a1e7a (diff) | |
download | nextcloud-server-774b0b36625715507242c38b2b8d0be4726264fe.tar.gz nextcloud-server-774b0b36625715507242c38b2b8d0be4726264fe.zip |
Use npm ci for webpack builds
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index a8afacda3eb..172a739a04d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,7 @@ pipeline: webpack-build: image: nextcloudci/node:node-4 commands: - - npm install + - npm ci - npm run build - git status - bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && exit 1 )" |