-
Notifications
You must be signed in to change notification settings - Fork 19
/
action.yml
39 lines (39 loc) · 1.14 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 'Nrwl Nx'
author: 'Mansa Group'
description: 'Wrap the Nx monorepo tool and execute tasks depending on the action context'
inputs:
targets:
description: 'Comma-separated list of targets to execute'
required: true
projects:
description: 'Comma-separated list of projects to use'
required: false
all: # Mutualy exclusive with `affected`
description: 'Run the targets on all projects'
required: false
default: 'false'
affected: # Mutualy exclusive with `all`
description: "Use the Nx' affected subcommand to only process affected projects"
required: false
default: 'true'
parallel:
description: 'Number of tasks to execute in parallel (can be expensive)'
required: false
default: '3'
args:
description: 'Optional arguments to append to the Nx command'
required: false
default: ''
nxCloud:
description: 'Enable support for Nx Cloud'
required: false
default: 'false'
workingDirectory:
description: 'Path to the Nx workspace, needed if not the repository root'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'terminal'
color: 'blue'