Skip to content

Commit 893d2ef

Browse files
committed
chore: remove comments
1 parent 1cf824d commit 893d2ef

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 >>

.circleci/test-deploy.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
version: 2.1
22
orbs:
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/[email protected]
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.
117
filters: &filters
128
tags:
139
only: /.*/
@@ -20,30 +16,25 @@ release-filters: &release-filters
2016
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
2117

2218
jobs:
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
3225
workflows:
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

0 commit comments

Comments
 (0)