Skip to content

Instantly share code, notes, and snippets.

@thulioph
Last active March 20, 2018 22:41
Show Gist options
  • Select an option

  • Save thulioph/d78889ea64115ea6717135abf744eb9e to your computer and use it in GitHub Desktop.

Select an option

Save thulioph/d78889ea64115ea6717135abf744eb9e to your computer and use it in GitHub Desktop.
Code snippet from post about CircleCI with React - parallel workflow
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:
- build
- test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment