Skip to content

Instantly share code, notes, and snippets.

@zlwaterfield
zlwaterfield / circle.yml
Last active April 11, 2018 21:01
CircleCI 2.0 example (build and deploy front end application)
version: 2
jobs:
build:
working_directory: ~/${project_name}
docker:
- image: circleci/node:6.14.1-browsers
steps:
- checkout
- run:
name: install-yarn