Last active
September 13, 2017 21:32
-
-
Save mccv/0b94b5a09a58aca0f9e949dc778c28e2 to your computer and use it in GitHub Desktop.
CircleCI config sample (Part 1)
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
# 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