Skip to content

Commit 1fe4ad3

Browse files
committed
docs(actions-plan): Update README with detailed target options and examples
1 parent 6c587bd commit 1fe4ad3

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

actions/plan/README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,27 @@ jobs:
4343
id: plan
4444
uses: tripss/nx-extend/actions/plan@improvements
4545
with:
46+
# Plan projects with the following targets
4647
targets: |
4748
test
4849
build
4950
e2e
5051
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+
5164
testMaxJobs: 1
52-
testTag: tests=enabled
65+
testTag: |
66+
tests=enabled
5367
5468
buildMaxJobs: 3
5569
buildPreTargets: |
@@ -79,5 +93,7 @@ jobs:
7993
index: ${{ matrix.index }}
8094
count: ${{ matrix.count }}
8195
tag: ${{ matrix.tag }}
96+
parallel: ${{ matrix.parallel }}
8297
preTargets: ${{ matrix.preTargets }}
98+
postTargets: ${{ matrix.postTargets }}
8399
```

0 commit comments

Comments
 (0)