1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-11-17 17:57:04 +01:00
hugo-theme-bootstrap4-blog/.drone.yml
Alan Orth d6ab3cda0a
All checks were successful
continuous-integration/drone/push Build is passing
.drone.yml: Correct npm task
2020-12-10 12:49:57 +02:00

35 lines
409 B
YAML

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:
- 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