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

.drone.yml - github.com/alanorth/hugo-theme-bootstrap4-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 250e627c13aad9e7442dfc8910666c609da05d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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