Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-12-22 23:37:42 +0300
committerJulius Härtl <jus@bitgrid.net>2019-12-22 23:37:42 +0300
commit0d07bda4566eea0f99b791b62b3fe434c219a16c (patch)
tree166dc31273334ebc07a7db2ca3b4a18132e3a675 /.drone.yml
parent67567a8e25cc2964abfc8a7fe92f1b6623529318 (diff)
Remove frontend build from drone
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/.drone.yml b/.drone.yml
index b8d2f99ec..a07375b47 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -150,39 +150,3 @@ trigger:
event:
- pull_request
- push
----
-kind: pipeline
-name: frontend
-steps:
- - name: install
- image: node:lts-alpine
- commands:
- - npm ci
- - name: eslint
- image: node:lts-alpine
- commands:
- - npm run lint
- - name: stylelint
- image: node:lts-alpine
- commands:
- - npm run stylelint
- - name: vue-build
- image: node:lts-alpine
- commands:
- - npm run build
- - name: jest
- image: node:lts-alpine
- commands:
- - npm run test
- - name: changes
- image: nextcloudci/node:node-4
- commands:
- - git status
- - bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && exit 1 )"
-trigger:
- branch:
- - master
- - stable*
- event:
- - pull_request
- - push