Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alanorth/hugo-theme-bootstrap4-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Orth <alan.orth@gmail.com>2021-03-23 10:39:40 +0300
committerAlan Orth <alan.orth@gmail.com>2021-03-23 10:39:40 +0300
commit085cf9847fc6d844036ab52e842d69ec930172e5 (patch)
tree371d7e97c66d00a7e2f2ab7426e0a37981bd5e9a
parentdbc97128f35ff8f70d12ac3183856573024f2eb9 (diff)
.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/
-rw-r--r--.drone.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.drone.yml b/.drone.yml
index 250e627..746acec 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1,10 +1,10 @@
kind: pipeline
type: docker
-name: node10
+name: node12
steps:
- name: build
- image: node:10-alpine
+ image: node:12-alpine
commands:
- npm install
- npm run build
@@ -12,11 +12,11 @@ steps:
---
kind: pipeline
type: docker
-name: node12
+name: node14
steps:
- name: build
- image: node:12-alpine
+ image: node:14-alpine
commands:
- npm install
- npm run build
@@ -24,11 +24,11 @@ steps:
---
kind: pipeline
type: docker
-name: node14
+name: node15
steps:
- name: build
- image: node:14-alpine
+ image: node:15-alpine
commands:
- npm install
- npm run build