Created
March 20, 2018 22:45
-
-
Save thulioph/d86c3cb1800047b0467454d92f1636e4 to your computer and use it in GitHub Desktop.
Code snippet from post about CircleCI with React - sequential workflow
This file contains hidden or 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
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:8.2.1 | |
steps: | |
- checkout | |
- run: echo "My first job is build." | |
test: | |
steps: | |
- checkout | |
- run: echo "My second job is test." | |
workflows: | |
version: 2 | |
build_and_test: | |
jobs: | |
- test | |
- build: | |
requires: | |
- test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment