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