11 lines
201 B
YAML
11 lines
201 B
YAML
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:latest
|
|
commands:
|
|
- apk add --no-cache python3 make g++
|
|
- npm install
|
|
- vue-cli-service build --mode production
|