mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-17 17:57:04 +01:00
Alan Orth
40b3fb4979
All checks were successful
continuous-integration/drone/push Build is passing
We want to build on LTS or "current" releases only. See: https://nodejs.org/en/about/releases/
44 lines
586 B
YAML
44 lines
586 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: node12
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:12-alpine
|
|
commands:
|
|
- npm --version
|
|
- npm install -g npm
|
|
- npm --version
|
|
- npm install
|
|
- npm run build
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: node14
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:14-alpine
|
|
commands:
|
|
- npm --version
|
|
- npm install -g npm
|
|
- npm --version
|
|
- npm install
|
|
- npm run build
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: node16
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:16-alpine
|
|
commands:
|
|
- npm --version
|
|
- npm install -g npm
|
|
- npm --version
|
|
- npm install
|
|
- npm run build
|