File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,27 @@ jobs:
43
43
id : plan
44
44
uses : tripss/nx-extend/actions/plan@improvements
45
45
with :
46
+ # Plan projects with the following targets
46
47
targets : |
47
48
test
48
49
build
49
50
e2e
50
51
52
+ # Available options
53
+ # <target>MaxJobs - Amount of max jobs for this target
54
+ # <target>Tag - Tag the targets project needs to have (Supports conditional)
55
+ # <target>PreTargets - Targets of the targeted project to run before running the target
56
+ # <target>postTargets - Targets of the targeted project to run after running the target
57
+ # <target>Parallel - Amount of projects it can run in parallel
58
+
59
+ # Run build target when project has tag "build=enabled" AND "service" tag is not "vercel" OR has tag "service=react"
60
+ targetBuildTag :
61
+ build=enabled,service!=vercel
62
+ service=react
63
+
51
64
testMaxJobs : 1
52
- testTag : tests=enabled
65
+ testTag : |
66
+ tests=enabled
53
67
54
68
buildMaxJobs : 3
55
69
buildPreTargets : |
79
93
index : ${{ matrix.index }}
80
94
count : ${{ matrix.count }}
81
95
tag : ${{ matrix.tag }}
96
+ parallel : ${{ matrix.parallel }}
82
97
preTargets : ${{ matrix.preTargets }}
98
+ postTargets : ${{ matrix.postTargets }}
83
99
` ` `
You can’t perform that action at this time.
0 commit comments