File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -582,18 +582,31 @@ workflows:
582
582
requires :
583
583
- checkout_code
584
584
585
+ # Only runs on PRs
586
+ analyze :
587
+ jobs :
588
+ # Checkout repo and run Yarn
589
+ - checkout_code :
590
+ filters : *filter-ignore-master-stable
591
+
585
592
# Run code checks
586
593
- analyze_pr :
587
594
filters : *filter-ignore-master-stable
588
595
requires :
589
596
- checkout_code
590
597
598
+ # Only runs on NN-stable branches
591
599
deploy :
592
600
jobs :
601
+ # Checkout repo and run Yarn
602
+ - checkout_code :
603
+ filters : *filter-only-stable
604
+
593
605
# If we are on a stable branch, wait for approval to deploy to npm
594
606
- approve_publish_npm_package :
595
607
filters : *filter-only-stable
596
608
type : approval
597
609
- publish_npm_package :
598
610
requires :
611
+ - checkout_code
599
612
- approve_publish_npm_package
You can’t perform that action at this time.
0 commit comments