.drone.yml: Correct npm task
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alan Orth 2020-12-10 12:49:57 +02:00
parent e1dfe242a6
commit d6ab3cda0a
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ steps:
image: node:10-alpine image: node:10-alpine
commands: commands:
- npm install - npm install
- npm run dist - npm run build
--- ---
kind: pipeline kind: pipeline
@ -19,7 +19,7 @@ steps:
image: node:12-alpine image: node:12-alpine
commands: commands:
- npm install - npm install
- npm run dist - npm run build
--- ---
kind: pipeline kind: pipeline
@ -31,4 +31,4 @@ steps:
image: node:14-alpine image: node:14-alpine
commands: commands:
- npm install - npm install
- npm run dist - npm run build