Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update yarn orb to v4 #118

Merged
merged 2 commits into from Feb 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 13 additions & 5 deletions .circleci/config.yml
@@ -1,7 +1,8 @@
version: 2.1

orbs:
yarn: artsy/yarn@3.0.0
yarn: artsy/yarn@4.0.0
auto: artsy/auto@1.0.1

workflows:
build_and_verify:
Expand All @@ -19,10 +20,17 @@ workflows:
- yarn/test:
requires:
- yarn/workflow-queue
- yarn/auto-release:
# The deploy job is the _only_ job that should have access to our npm
# tokens. We include a context that has our publish credentials
# explicitly in this step. https://circleci.com/docs/2.0/contexts/
- auto/publish-canary:
context: npm-deploy
filters:
branches:
ignore: master
requires:
- yarn/test
- yarn/lint
- yarn/type-check
- yarn/update-cache
- auto/publish:
context: npm-deploy
filters:
branches:
Expand Down