mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
9812391145
Without this change the default setting from dockerExecute and dockerExecuteOnKubernetes are overruled. With this change the user has to explicitly configure a step if they want this behaviour. Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
metadata:
|
|
name: npmExecuteLint
|
|
aliases:
|
|
- name: executeNpm
|
|
description: Execute ci-lint script on all npm packages in a project or execute default linting
|
|
longDescription: |
|
|
Execute ci-lint script for all package json files, if they implement the script. If no ci-lint script is defined,
|
|
either use ESLint configurations present in the project or use the provided general purpose configuration to run ESLint.
|
|
spec:
|
|
inputs:
|
|
params:
|
|
- name: failOnError
|
|
type: bool
|
|
description: Defines the behavior in case linting errors are found.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
default: false
|
|
- name: defaultNpmRegistry
|
|
type: string
|
|
description: URL of the npm registry to use. Defaults to https://registry.npmjs.org/
|
|
scope:
|
|
- PARAMETERS
|
|
- GENERAL
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
aliases:
|
|
- name: npm/defaultNpmRegistry
|
|
containers:
|
|
- name: node
|
|
image: node:12-buster
|