File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ The project includes a GitHub Actions workflow for continuous integration that r
128128The pipeline runs on multiple platforms and Node.js versions to ensure maximum compatibility:
129129
130130- ** Operating Systems** : Ubuntu, Windows, and macOS
131- - ** Node.js Versions** : 18.x, 20.x, 22.x, 24.x
131+ - ** Node.js Versions** : 20.x, 22.x, 24.x
132132
133133Test coverage reports are automatically uploaded as artifacts for each platform and Node.js version combination.
134134
Original file line number Diff line number Diff line change @@ -23,9 +23,13 @@ program
2323 handleCommandResult ( result )
2424 } )
2525
26- program
27- . command ( 'add-project' )
28- . description ( 'Add a project with GitHub organizations' )
26+ const project = program
27+ . command ( 'project' )
28+ . description ( 'Project management' )
29+
30+ project
31+ . command ( 'add' )
32+ . description ( 'Add a project with a list of GitHub organizations (optional)' )
2933 . requiredOption ( '-n, --name <name>' , 'Project name' )
3034 . option ( '-g, --github-orgs <githubOrgUrls...>' , 'GitHub organization URLs' )
3135 . action ( async ( options ) => {
You can’t perform that action at this time.
0 commit comments