.drone.yml: Build on all current Node.js LTS releases

This uses Drone.io's multi-pipeline feature.

See: https://docs.drone.io/pipeline/docker/examples/languages/node/
This commit is contained in:
Alan Orth 2020-12-10 12:30:14 +02:00
parent 28ffe4f78e
commit bc27eb8285
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,16 @@
--
kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:10-alpine
commands:
- npm install
- npm run dist
--
kind: pipeline
type: docker
name: default
@ -8,3 +21,15 @@ steps:
commands:
- npm install
- npm run dist
--
kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:14-alpine
commands:
- npm install
- npm run dist