mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 11:00:43 +00:00
21 lines
210 B
Plaintext
21 lines
210 B
Plaintext
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: Test
|
||
|
image: node:latest
|
||
|
commands:
|
||
|
- npm install
|
||
|
- npm test
|
||
|
|
||
|
services:
|
||
|
- name: postgres
|
||
|
image: postgres:9.6.4
|
||
|
|
||
|
...
|