Skip to content

Commit 9e1ae55

Browse files
committed
Fix drone
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
1 parent b00a452 commit 9e1ae55

1 file changed

Lines changed: 11 additions & 14 deletions

File tree

.drone.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1-
clone:
2-
git:
3-
image: plugins/git
4-
depth: 1
1+
kind: pipeline
2+
name: vue-build
53

6-
pipeline:
7-
vue-build:
4+
steps:
5+
- name: vue-build
86
image: nextcloudci/node:node-4
97
commands:
108
- npm ci
119
- npm run build
1210
- git status
1311
- bash -c "[[ ! \"`git status --porcelain js/`\" ]] || ( echo 'Uncommited changes in vue build' && exit 1 )"
14-
when:
15-
matrix:
16-
TESTS: vue-build
1712

18-
matrix:
19-
include:
20-
- TESTS: vue-build
21-
22-
branches: [ master, stable* ]
13+
trigger:
14+
branch:
15+
- master
16+
- stable*
17+
event:
18+
- pull_request
19+
- push

0 commit comments

Comments
 (0)