Skip to content

Instantly share code, notes, and snippets.

@mccv
Last active September 13, 2017 21:32
Show Gist options
  • Save mccv/0b94b5a09a58aca0f9e949dc778c28e2 to your computer and use it in GitHub Desktop.
Save mccv/0b94b5a09a58aca0f9e949dc778c28e2 to your computer and use it in GitHub Desktop.
CircleCI config sample (Part 1)
# note: the docker image versions here are almost certainly out of date.
# See https://github.com/turbinelabs/circle-ci-integration/blob/master/.circleci/config.yml
jobs:
build:
docker:
- image: node:8.4.0
environment:
DEBIAN_FRONTEND: noninteractive
steps:
- checkout
- run: cd server && npm install && npm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment