hugo-theme-bootstrap4-blog/.drone.yml

29 lines
389 B
YAML
Raw Normal View History

2020-12-10 11:48:12 +01:00
kind: pipeline
type: docker
name: node14
2020-12-10 11:48:12 +01:00
steps:
- name: build
image: node:14-alpine
2020-12-10 11:48:12 +01:00
commands:
- npm --version
- npm install -g npm
- npm --version
2020-12-10 11:48:12 +01:00
- npm install
2020-12-10 11:49:57 +01:00
- npm run build
2020-12-10 11:48:12 +01:00
---
kind: pipeline
type: docker
name: node16
2020-12-10 11:48:12 +01:00
steps:
- name: build
image: node:16-alpine
2020-12-10 11:48:12 +01:00
commands:
- npm --version
- npm install -g npm
- npm --version
2020-12-10 11:48:12 +01:00
- npm install
2020-12-10 11:49:57 +01:00
- npm run build