2019-05-03 18:34:29 +02:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: prepare
|
|
|
|
image: node:12
|
|
|
|
commands:
|
|
|
|
- npm install
|
2019-05-10 14:43:38 +02:00
|
|
|
- name: audit
|
|
|
|
image: node:12
|
|
|
|
errignore: true
|
|
|
|
commands:
|
2019-05-08 02:10:16 +02:00
|
|
|
- npm audit
|
2019-05-03 18:34:29 +02:00
|
|
|
- name: build
|
|
|
|
image: node:12
|
|
|
|
commands:
|
2019-05-08 01:28:16 +02:00
|
|
|
- npm run build:prod
|