Skip to main content
Example config for running Momentic on Travis CI. More reference configs live in momentic-ai/examples. For a given root package.json:
package.json
Create a file called .travis.yml in your repository with the following contents:
.travis.yml

Authentication

To run any commands, you must authenticate with Momentic. You can do this by adding the MOMENTIC_API_KEY environment variable to your Travis CI workflow.
  1. Create an API key in Momentic dashboard.
Copy the value; you will add it as a CI secret in the next step.
  1. Go to your Travis repository settings and scroll down to the Environment Variables section. Create a new variable called MOMENTIC_API_KEY and enter the value of your API key.
  1. Travis CI automatically loads environment variables stored in project settings into the CI environment. No modifications are necessary for the CI file.