19 lines
187 B
YAML
19 lines
187 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: exec
|
||
|
name: Build and deploy
|
||
|
|
||
|
steps:
|
||
|
- name: Build
|
||
|
commands:
|
||
|
- nvm use 20
|
||
|
- pnpm build
|
||
|
- ls
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|
||
|
node:
|
||
|
lights: builder
|
||
|
...
|