We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08c005 commit fac8615Copy full SHA for fac8615
.circleci/config_continue.yml
@@ -16,7 +16,16 @@ jobs:
16
- run: npm run build-check
17
- run: npm run size
18
- run: npm run check-circular-dependencies
19
- - run: (cd .circleci/ && ./markTesting.sh)
+ # - run: (cd .circleci/ && ./markTesting.sh)
20
+ - run:
21
+ name: Mark Testing (Conditional)
22
+ command: |
23
+ if [ "$CIRCLE_BRANCH" != "ci/use-circle-ci-tests-for-partial-rerun-support" ]; then
24
+ echo "Running ./markTesting.sh as branch is $CIRCLE_BRANCH";
25
+ (cd .circleci/ && ./markTesting.sh);
26
+ else
27
+ echo "Skipping ./markTesting.sh for branch $CIRCLE_BRANCH";
28
+ fi
29
- persist_to_workspace:
30
root: / # relative path to our working directory
31
paths:
0 commit comments