Compare commits

...

3 Commits

Author SHA1 Message Date
Alan Orth d6ab3cda0a
.drone.yml: Correct npm task
continuous-integration/drone/push Build is passing Details
2020-12-10 12:49:57 +02:00
Alan Orth e1dfe242a6
.travis.yml: Only build on Node.js LTS versions 2020-12-10 12:48:38 +02:00
Alan Orth bfac136c3e
Add .drone.yml for ci.mjanja.ch 2020-12-10 12:48:12 +02:00
2 changed files with 34 additions and 1 deletions

34
.drone.yml Normal file
View File

@ -0,0 +1,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

View File

@ -2,7 +2,6 @@ language: node_js
node_js:
- 10
- 12
- 13
- 14
script: npm run build
os: linux