.drone.yml: Run on current and LTS Node.js releases

Node.js v10 will cease to be LTS next month and I haven't even used
it for a while already, so let's change this to only run on 12, 14,
and 15, which are the current active and LTS releases.

See: https://nodejs.org/en/about/releases/
This commit is contained in:
Alan Orth 2021-03-23 09:39:40 +02:00
parent dbc97128f3
commit 085cf9847f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 12 additions and 12 deletions

View File

@ -1,17 +1,5 @@
kind: pipeline
type: docker
name: node10
steps:
- name: build
image: node:10-alpine
commands:
- npm install
- npm run build
---
kind: pipeline
type: docker
name: node12
steps:
@ -32,3 +20,15 @@ steps:
commands:
- npm install
- npm run build
---
kind: pipeline
type: docker
name: node15
steps:
- name: build
image: node:15-alpine
commands:
- npm install
- npm run build