mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-17 17:57:04 +01:00
Alan Orth
085cf9847f
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/
35 lines
409 B
YAML
35 lines
409 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: node12
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:12-alpine
|
|
commands:
|
|
- npm install
|
|
- npm run build
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: node14
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:14-alpine
|
|
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
|