Skip to main content

CI/CD and Deployment

Use your CI/CD tool to install Bit components on consuming apps or publish component automatically to bit.dev or any remote Bit scope.

Get a Bit token#

The first thing to do is get a Bit token that has access to scopes.
You can create a dedicated user such as dev@company.com for the deployment, or use an existing user's token.

If you are using an existing user's token, follow the steps described here to generate a token that does not expire on local logins.

To get your token run the following command:

bit config get user.token

Set user.token as an environment parameter on your server named BIT_TOKEN.

Install Components on CI#

Configure npmrc on CI#

Bit components are stored on the bit registry located in https://node.bit.dev.

When installing components with npm or yarn, they will try to install the components starting with @<account-name> by resolving the @<account-name> registry. This configuration is stored in an .npmrc configuration file. Npm and yarn respect the following file locations:

  • per-project config file (/path/to/my/project/.npmrc)
  • per-user config file (~/.npmrc)
  • global config file ($PREFIX/etc/npmrc)
  • npm builtin config file (/path/to/npm/npmrc)

When working locally, bit login configures this file automatically for you. You will need to set this file manually for your CI. If not done right you will get these errors:

NPM

failed running npm install at /Users/user/devenv/example-npm-error/components/utils/string/pad-leftnpm ERR! code E404npm ERR! 404 Not Found: @bit/bit.utils.string.pad-left@0.0.1

Yarn

failed running yarn install at /Users/user/devenv/example-npm-error/components/utils/string/pad-lefterror An unexpected error occurred: "https://registry.yarnpkg.com/@bit%2fbit.utils.string.pad-left: Not found".

The error is solved by making sure that one of the .npmrc files has the configuration prior to running npm install. The solutions vary per vendor (see below), but the main methods are:

  • Define .npmrc in the project.
  • Generate .npmrc file for the CI user
  • Extend .npmrc configuration with vendor's tools

Manually create npmrc file#

You can add a .npmrc in your project with the following:

@<account-name>:registry=https://node.bit.dev@teambit:registry=https://node.bit.dev//node.bit.dev/:_authToken=${BIT_TOKEN}always-auth=true

Define BIT_TOKEN as a secret global variable on the server.

Generate .npmrc on server#

To generate the file dynamically, you need to run the following script (e.g. create a bit_npm.sh script):

echo "Adding bit.dev to npm registry"echo "always-auth=true" >> ~/.npmrcecho "@<account-name>:registry=https://node.bit.dev" >> ~/.npmrcecho "@teambit:registry=https://node.bit.dev" >> ~/.npmrcecho "//node.bit.dev/:_authToken={$BIT_TOKEN}" >> ~/.npmrcecho "Completed adding bit.dev to npm registry"

Netlify#

On Netlify, you cannot generate the file dynamically, and you should add .npmrc file in your project.

Add the BIT_TOKEN as environment variable

Vercel#

Learn how to use private dependencies with Vercel and add the contents of your ~/.npmrc file as an environment variable.

Gitlab#

In .gitlab-ci.yml run the script that generates the file for the user as an initial step before running npm install.

Add the BIT_TOKEN as an environment variable

GitHub actions#

Add the BIT_TOKEN as a secret in GitHub.

In the GitHub workflow file, create a step before the npm install section:

- name: init bit.dev  run: |    echo "Adding bit.dev to npm registry"    npm config set @bit:registry https://node.bit.dev    npm config set @<account-name>:registry=https://node.bit.dev    npm config set @teambit:registry=https://node.bit.dev    npm config set //node.bit.dev/:_authToken ${BIT_TOKEN}    echo "Completed adding bit.dev to npm registry"  env:    BIT_TOKEN: ${{ secrets.BIT_TOKEN }}

Heroku#

To generate the .npmrc before installing dependencies, run a pre-build script as described here.

Add the BIT_TOKEN as an environment variable

Azure pipelines#

Use the npm authenticate task to setup the .npmrc configuration in your pipeline.

Common Errors#

'package not found' (404) when importing a component#

NPM or Yarn throws 'package not found' when importing a component. This is likely because the component has a dependency on a @bit component. Make sure npmrc is configured.

Unauthorized (401) when installing a component#

Possible reasons:

  • npmrc is not properly configured
  • You do not have the right permissions on the scope that the components are hosted in, and are therefore unable to access its components. Make sure you have at least read permissions for the scope that host the components.
  • Yarn does not send an authentication token when installing packages from a yarn.lock file. This is a known issue. Make sure always-auth is configured in .npmrc.

Version and Export Components on CI#

Install and configure Bit#

Follow the instructions in bit docker readme to get a docker with bit installed.

To configure bit on the server, you need to run the following commands:

bit config set user.token ${BIT_TOKEN}

Versioning and Publishing#

The flow for versioning and publishing components work as follows:

  1. On your local computer run bit tag with the --soft option to annotate that modified components should be versioned and exported.
  2. Bit updates .bitmap with information on new versions to publish.
  3. Collaborate with your peers on the soon-to-be published components, their semantic version and changelog messages.
  4. Merge changes to main branch.
  5. CI/CD versions all marked components and publish them.
  6. CI/CD commits back to the repository the updated .bitmap without annotations on versions to be exported.

Where is the 'test' and 'build'?

The tag command runs the 'build pipeline' before versioning a component. This pipeline includes building and testing. if any of these tasks fails, the versioning process will be aborted.

use soft tags in local workspaces

Components in local workspaces should be 'soft-tagged'. That means they are registered in the .bitmap file as pending to be versioned, but not yet versioned. The versioning process should only happen in the CI (once changes to the workspace are pushed to the remote repository). This enables collaboration on components before they are tagged and exported.
Learn more.

Using GitHub Actions#

You can also follow along with this example project.

  1. Create a new secret variable in your Github repository. Name it BIT_TOKEN and set the value of it to the user.token value.
  2. Create a new tag-and-export.yml file in your remote repository ./.github/workflows directory.
  3. Create your script.

Here's a demo script you can start with:

# This workflow hard-tags and exports soft-tagged componentsname: Tag and Export Components
on:  push:    branches: [main]  pull_request:    branches: [main]
jobs:  tag-and-export:    runs-on: ubuntu-latest    if: "!contains(github.event.head_commit.message, '--skip-ci')"    env:      BIT_TOKEN: ${{ secrets.BIT_TOKEN }}
    steps:      - uses: actions/checkout@v2      - name: Use Node.js 12        uses: actions/setup-node@v1        with:          node-version: 12.x      - name: Install Bit Version Manager        run: npm i -g @teambit/bvm      - name: Install latest Bit version        run: bvm install      - name: add bvm bin folder to path        run: echo "$HOME/bin" >> $GITHUB_PATH      - name: Set up bit config        run: |          bit config set analytics_reporting false          bit config set anonymous_reporting false          bit config set user.token $BIT_TOKEN      - name: Install packages using bit        run: bit install      - name: Hard-tag pending components        run: bit tag --persist      - name: Export components        run: bit export      - name: Commit changes made to .bitmap        run: |          git config --global user.name '${{ github.actor }}'          git config --global user.email '${{ github.actor }}@users.noreply.github.com'          git add .bitmap          git commit -m "update .bitmap with new component versions (automated). --skip-ci"          git push

Using GitLab CI#

  1. Generate a Personal Access Token with "Read Repository" and "Write Repository" permissions (this will be GL_TOKEN).
  2. Generate BIT_TOKEN by grabbing it from your local "bit config" output.
  3. Configure both tokens as project variables for your GitLab project and name them GL_TOKEN and BIT_USER_TOKEN.
  4. Create a .gitlab-ci.yml file in the root of the repository.
  5. Create your script.

Here's a demo script you can start with:

publish_components:  image: node:latest  only: master  script:    # Install Bit and configure permissions    - npm i -g @teambit/bvm    - bvm install    - export PATH=$HOME/bin:$PATH    - bit config set analytics_reporting false    - bit config set anonymous_reporting false    - bit config set user.token $BIT_TOKEN    # Install dependencies    - bit install    # Version all pending components    - bit tag --persist    # Export components    - bit export    # Setup Git and commit back .bitmap changes    - git config --global user.email "some@email.address"    - git config --global user.name "some ci account"    - export GL_RELEASE_GITLAB_API_TOKEN=$GL_TOKEN    # This checkout is a workaround for the "error: src refspec master does not match any." error    - git checkout master    # Add the modified ".bitmap" file    - git add .    # Replace origin with authenticated origin    - git remote rm origin    - git remote add origin https://[repo-owner]:$GL_RELEASE_GITLAB_API_TOKEN@gitlab.com/[repo-ower]/[repo-name].git    # Using [skip ci] as its a feature for GitLab that will not trigger CI for this commit    - git commit -am 'publish components [skip ci]'    - git pull origin master    - git push origin master