12 lines
204 B
YAML
12 lines
204 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: node
|
|
commands:
|
|
- yarn install --frozen-lockfile
|
|
- name: build
|
|
image: node
|
|
commands:
|
|
- yarn build --prefix-paths
|