TeamCity On-Premises 2021.1 Help

Node.js

The Node.js build runner allows running Node.js tools like npm, yarn, and node.

Refer to Configuring Build Steps for a description of common build steps' settings. Refer to Docker Wrapper to learn how you can run this step inside a Docker container.

Prerequisites

Currently, Node.js steps can only be run inside a Docker container. TeamCity uses node:lts by default, or, if there is an .nvmrc file inside your project, it will search for the image specification there.

Autodetecting JavaScript Steps

If your repository contains a package.json file, TeamCity will automatically detect used frameworks and propose adding respective build steps.

Currently supported frameworks are ESlint, Jest, or Mocha.

If TeamCity detects an .nvmrc file, it will automatically use the node version specified in it.

Running Node.js Commands

In the Shell script field, enter all Node.js commands to be executed in this step.

Accessing Private NPM Registries

To access a private npm registry during a build (for example, to download a package), you need to:

  1. Configure an NPM Registry connection as described here.

  2. In Build Configuration Settings | Build Features, add an NPM Registry Connection build feature and select the new connection, so it can be used in this configuration.

As a result, a TeamCity agent will authenticate in this registry during the build.

Alternatively to this procedure, you can let TeamCity parse a token from the .npmrc file inside your JS project. To achieve this, declare a token variable in this file as specified here and then create an environment variable NPM_TOKEN in TeamCity with the value of the access token and the "Password" type.

Last modified: 30 September 2021