File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ workflows:
1919 filters : *filters
2020 - shellcheck/check :
2121 filters : *filters
22- # Triggers the next workflow in the Orb Development Kit.
2322 - orb-tools/continue :
2423 pipeline_number : << pipeline.number >>
2524 vcs_type : << pipeline.project.type >>
Original file line number Diff line number Diff line change 11version : 2.1
22orbs :
3- # Your orb will be automatically injected here during the pipeline.
4- # Reference your orb's jobs and commands below as they will exist when built.
53 orb-tools : circleci/orb-tools@12.0
64 # The orb definition is intentionally not included here. It will be injected into the pipeline.
75 <orb-name> : {}
86
9- # Use this tag to ensure test jobs always run,
10- # even though the downstream publish job will only run on release tags.
117filters : &filters
128 tags :
139 only : /.*/
@@ -20,30 +16,25 @@ release-filters: &release-filters
2016 only : /^v[0-9]+\.[0-9]+\.[0-9]+$/
2117
2218jobs :
23- # Create jobs to test the commands of your orbs.
24- # You may want to add additional validation steps to ensure the commands are working as expected.
2519 command-test :
2620 docker :
2721 - image : cimg/base:current
2822 steps :
2923 - checkout
30- # Run your orb's commands to validate them.
3124 - yarn_install
3225workflows :
3326 test-deploy :
3427 jobs :
35- # Make sure to include "filters: *filters" in every test job you want to run as part of your deployment.
36- # Test your orb's commands in a custom job and test your orb's jobs directly as a part of this workflow.
3728 - command-test :
3829 filters : *filters
39- # The orb must be re-packed for publishing, and saved to the workspace.
30+
4031 - orb-tools/pack :
4132 filters : *release-filters
33+
4234 - orb-tools/publish :
4335 orb_name : react-native-community/react-native
4436 vcs_type : << pipeline.project.type >>
4537 pub_type : production
46- # Ensure this job requires all test jobs and the pack job.
4738 requires :
4839 - orb-tools/pack
4940 - command-test
You can’t perform that action at this time.
0 commit comments