Node JSBuild Step
A Node.js build step
Example. Adds a Node.js build step with specified script commands, that will be running in Node.js LTS Docker container.
buildType {
// Other Build Type settings ...
steps {
// Other Build Steps ...
nodeJS {
name = "Node.js test"
shellScript = """
npm ci
npm run test
""".trimIndent()
}
Content copied to clipboard }
}
Example. Adds a Node.js build step with specified script commands, that will be running in specified Node.js Docker container, in custom working directory. This build step will run even if some previous build steps are failed.
buildType {
// Other Build Type settings ...
steps {
// Other Build Steps ...
nodeJS {
name = "Node.js test"
executionMode = BuildStep.ExecutionMode.RUN_ON_FAILURE
workingDir = "frontend"
shellScript = """
npm ci
npm run test
""".trimIndent()
dockerImage = "node:18"
}
Content copied to clipboard }
}
See also
Properties
Optional collection of build step execution conditions
Specifies which Docker image to use for running this build step. I.e. the build step will be run inside specified docker image, using 'docker run' wrapper.
Specifies which Docker image platform will be used to run this build step.
If enabled, "pull image" command will be run before docker run.
Additional docker run command arguments
Build step execution mode
Shell commands for running Node.js projects
Build working directory for commands run, specify it if it is different from the checkout directory.
Functions
Deletes all configured build step conditions
Configures build step conditions
Copies parameters of this object to the specified target
Validates this object and reports found errors to the provided consumer