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.
- If you want to only install components on the CI using NPM or Yarn, follow the steps bellow to get a token, and configure .npmrc on CI. Go here for information on common errors.
- If you want to version and export components, first get a token and follow these steps.
#
Get a Bit tokenThe 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 CIBit 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 fileYou 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.
.npmrc
on server#
Generate 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"
#
NetlifyOn Netlify, you cannot generate the file dynamically, and you should add .npmrc
file in your project.
Add the BIT_TOKEN as environment variable
#
VercelLearn how to use private dependencies with Vercel and add the contents of your ~/.npmrc
file as an environment variable.
#
GitlabIn .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 actionsAdd 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 }}
#
HerokuTo generate the .npmrc
before installing dependencies, run a pre-build script as described here.
Add the BIT_TOKEN
as an environment variable
#
Azure pipelinesUse the npm authenticate task to setup the .npmrc
configuration in your pipeline.
#
Common Errors#
'package not found' (404) when importing a componentNPM 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 componentPossible 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 surealways-auth
is configured in.npmrc
.
#
Version and Export Components on CI#
Install and configure BitFollow 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 PublishingThe flow for versioning and publishing components work as follows:
- On your local computer run
bit tag
with the--soft
option to annotate that modified components should be versioned and exported. - Bit updates
.bitmap
with information on new versions to publish. - Collaborate with your peers on the soon-to-be published components, their semantic version and changelog messages.
- Merge changes to main branch.
- CI/CD versions all marked components and publish them.
- 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 ActionsYou can also follow along with this example project.
- Create a new secret variable in your Github repository. Name it
BIT_TOKEN
and set the value of it to theuser.token
value. - Create a new
tag-and-export.yml
file in your remote repository./.github/workflows
directory. - 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- Generate a Personal Access Token with "Read Repository" and "Write Repository" permissions (this will be
GL_TOKEN
). - Generate
BIT_TOKEN
by grabbing it from your local "bit config" output. - Configure both tokens as project variables for your GitLab project and name them
GL_TOKEN
andBIT_USER_TOKEN
. - Create a
.gitlab-ci.yml
file in the root of the repository. - 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