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: fa0b841a5448fbc3d1708c1844bb50381174ccce (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
35
36
37
38
39
40
41
42
43
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: node15

steps:
- name: build
  image: node:15-alpine
  commands:
  - npm --version
  - npm install -g npm
  - npm --version
  - npm install
  - npm run build