15 lines
261 B
YAML
15 lines
261 B
YAML
when:
|
|
- branch: *
|
|
event: push
|
|
|
|
steps:
|
|
- name: test
|
|
image: docker.io/node:hydrogen-slim
|
|
commands:
|
|
- npm ci
|
|
- npm run test:unit
|
|
- name: deploy
|
|
image: docker.io/busybox
|
|
commands:
|
|
- ssh root@autobaan
|
|
- touch deploy
|