Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stovak/fd15f82034ff0dcabd644279af63ce46 to your computer and use it in GitHub Desktop.
Save stovak/fd15f82034ff0dcabd644279af63ce46 to your computer and use it in GitHub Desktop.
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