summaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: 444106626a2fae845dbd008c6b50a6c11594d3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
kind: pipeline
name: webpack

steps:
  - name: build
    image: nextcloudci/node:node-4
    commands:
      - npm ci
      - npm run build
  - 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*