Last active
August 31, 2018 16:31
-
-
Save kpfefferle/4aaf85e8e00839260c6a446e75f244c8 to your computer and use it in GitHub Desktop.
Using CircleCI 2.0 with Ember
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
# .circleci/config.yml | |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:6-browsers | |
environment: | |
JOBS: 2 | |
working_directory: ~/gitzoom-web | |
steps: | |
- checkout | |
- run: | |
name: Yarn Install | |
command: yarn install --non-interactive | |
- run: echo 'export PATH=~/gitzoom-web/node_modules/.bin:$PATH' >> $BASH_ENV | |
- run: | |
name: Run JS Lint | |
command: yarn run lint:js | |
- run: | |
name: Run Tests | |
command: yarn test | |
- deploy: | |
command: | | |
if [ "${CIRCLE_BRANCH}" == "master" ]; then | |
ember deploy production | |
fi |
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
# .circleci/config.yml | |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:6-browsers | |
environment: | |
JOBS: 2 | |
working_directory: ~/gitzoom-web | |
steps: | |
- checkout | |
- restore_cache: | |
keys: | |
- v1-deps-{{ .Branch }}-{{ checksum "yarn.lock" }} | |
- v1-deps-{{ .Branch }}- | |
- v1-deps- | |
- run: | |
name: Yarn Install | |
command: yarn install --non-interactive | |
- save_cache: | |
key: v1-deps-{{ .Branch }}-{{ checksum "yarn.lock" }} | |
paths: | |
- ./node_modules | |
- run: echo 'export PATH=~/gitzoom-web/node_modules/.bin:$PATH' >> $BASH_ENV | |
- run: | |
name: Run JS Lint | |
command: yarn run lint:js | |
- run: | |
name: Run Tests | |
command: yarn test | |
- deploy: | |
command: | | |
if [ "${CIRCLE_BRANCH}" == "master" ]; then | |
ember deploy production | |
fi |
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
# .circleci/config.yml | |
defaults: &defaults | |
docker: | |
- image: circleci/node:6-browsers | |
environment: | |
JOBS: 2 | |
working_directory: ~/gitzoom-web | |
version: 2 | |
jobs: | |
checkout_code: | |
<<: *defaults | |
steps: | |
- checkout | |
- persist_to_workspace: | |
root: . | |
paths: | |
- . | |
install_dependencies: | |
<<: *defaults | |
steps: | |
- attach_workspace: | |
at: . | |
- restore_cache: | |
keys: | |
- v1-deps-{{ .Branch }}-{{ checksum "yarn.lock" }} | |
- v1-deps-{{ .Branch }}- | |
- v1-deps- | |
- run: | |
name: Yarn Install | |
command: yarn install --non-interactive | |
- save_cache: | |
key: v1-deps-{{ .Branch }}-{{ checksum "yarn.lock" }} | |
paths: | |
- ./node_modules | |
- persist_to_workspace: | |
root: . | |
paths: | |
- . | |
lint_js: | |
<<: *defaults | |
steps: | |
- attach_workspace: | |
at: . | |
- run: | |
name: Lint JS | |
command: yarn run lint:js | |
run_tests: | |
<<: *defaults | |
steps: | |
- attach_workspace: | |
at: . | |
- run: echo 'export PATH=~/gitzoom-web/node_modules/.bin:$PATH' >> $BASH_ENV | |
- run: | |
name: Run Tests | |
command: yarn test | |
deploy_production: | |
<<: *defaults | |
steps: | |
- attach_workspace: | |
at: . | |
- run: echo 'export PATH=~/gitzoom-web/node_modules/.bin:$PATH' >> $BASH_ENV | |
- run: | |
name: Deploy | |
command: ember deploy production | |
workflows: | |
version: 2 | |
test_and_deploy: | |
jobs: | |
- checkout_code | |
- install_dependencies: | |
requires: | |
- checkout_code | |
- lint_js: | |
requires: | |
- install_dependencies | |
- run_tests: | |
requires: | |
- install_dependencies | |
- deploy_production: | |
requires: | |
- lint_js | |
- run_tests | |
filters: | |
branches: | |
only: master |
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
# .circleci/config.yml | |
# ... | |
workflows: | |
version: 2 | |
test_and_deploy: | |
jobs: | |
- checkout_code: | |
filters: | |
tags: | |
only: /.*/ | |
- install_dependencies: | |
requires: | |
- checkout_code | |
filters: | |
tags: | |
only: /.*/ | |
- lint_js: | |
requires: | |
- install_dependencies | |
filters: | |
tags: | |
only: /.*/ | |
- run_tests: | |
requires: | |
- install_dependencies | |
filters: | |
tags: | |
only: /.*/ | |
- deploy_production: | |
requires: | |
- lint_js | |
- run_tests | |
filters: | |
tags: | |
only: /v[0-9]+\.[0-9]+\.[0-9]+/ | |
branches: | |
ignore: /.*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment