Last active
April 10, 2018 08:45
-
-
Save ryzy/72c68da48ea75f8ba0583295afa92f57 to your computer and use it in GitHub Desktop.
CircleCI
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
if(sth) { | |
return true; | |
} |
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
# file: .circleci/config.yml | |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: node:8 | |
steps: | |
- checkout | |
- run: yarn install | |
- run: yarn test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment