Created
February 28, 2024 21:27
-
-
Save stovak/fd15f82034ff0dcabd644279af63ce46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CircleCI Example: | |
``` | |
version: 2.1 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:10 | |
environment: | |
TERMINUS_HOST: "api.pantheon.io" | |
steps: | |
- checkout | |
# Add your build steps here | |
``` | |
Github Actions: | |
``` | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
TERMINUS_HOST: "api.pantheon.io" | |
steps: | |
- uses: actions/checkout@v2 | |
# Add your build steps here | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment