Setup Stellate in CI
While Stellate offers caching functionality without knowing anything about your schema, some features rely on us knowing the structure of your GraphQL API. To automate schema updates and at the same time manage your Stellate service configuration as Configuration-as-Code, we recommend setting up your CI system to push changes to Stellate whenever you deploy to production.
-
Pull your service’s latest
stellate.tsconfiguration file your service with thestellate pullcommand. Specify the--serviceargument set to your service’s name, for example:npx stellate pull --service demo-appCommit your service’s
stellate.tsfile to your repository. Also, make sure to regularly commit an up-to-date version of the configuration file to your repository if you make changes to your services configuration via the online dashboard. -
Create a Personal Access Token for your account at <https://stellate.co/app/settings/access-tokens> .
-
Set the
STELLATE_TOKENenvironment variable in your CI service to the personal access token created in step 2. -
Add a task to your CI service for your desired branch, which runs
npx stellate push. This command will push your GraphQL schema and configuration changes to Stellate.
If you want to only push schema changes instead of the entire configuration,
modify the npx stellate push command in the following examples to read npx stellate push schema instead.
Provider Specific Instructions
Below are specific CI provider configurations. If your CI provider is not on this list contact us at support@stellate.co, we’d be happy to help you configure it correctly!
GitHub Actions
To do this from GitHub Actions, add a file named .github/workflows/stellate.yml with the following contents and add the token you created as an encrypted secret to your repository.
name: Stellate
on:
push:
branches:
- main
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
check-latest: true
cache: 'npm'
- name: Push to Stellate
run: npx stellate push
env:
STELLATE_TOKEN: ${{ secrets.STELLATE_TOKEN }}GitLab CI
For GitLab CI, add (or extend) your .gitlab-ci.yml configuration at the root of your repository.
You’ll also need to configure your Stellate token as a masked and protected CI/CD variable. You’ll find that section in your project settings, within the CI/CD settings page. See GitLab’s documentation on CI/CD Variables for more information.
config_push:
image: node:lts
cache:
paths:
- node_modules
rules:
- if: '$CI_COMMIT_BRANCH =~ /^main/'
script:
- npx stellate pushYou might also want to update the rules section to your needs. The Gitlab documentation on rules has a good overview of how this works. Our example above pushes the configuration for each commit on the main branch.
CircleCI
Configure your Stellate token as an environment variable in a CircleCI Context and make sure that the jobs are configured to use that context.
version: 2.1
jobs:
stellate:
docker:
- image: cimg/node:lts
steps:
- checkout
- run: npx stellate push
workflows:
version: 2.1
config_push:
jobs:
- stellate:
context:
- stellate