standard/assets/drone.js

25 lines
542 B
JavaScript
Raw Normal View History

2020-07-09 21:10:20 +02:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of standard which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
'use strict';
module.exports = `kind: pipeline
name: default
steps:
- name: setup
2020-08-04 13:49:44 +02:00
image: registry:5000/node-build
2020-07-09 21:10:20 +02:00
commands:
- yarn
2020-07-09 21:16:23 +02:00
- curl https://git.scode.ovh/Timo/standard/raw/branch/master/ci.js > ci.js
2020-07-09 21:10:20 +02:00
- name: build
2020-08-04 12:46:16 +02:00
image: registry:5000/node-build
2020-07-09 21:10:20 +02:00
commands:
- node ci.js
`;