Skip to content

Commit 4bb7207

Browse files
authored
feat: remove show-reports workflow (#227)
1 parent 15adcb3 commit 4bb7207

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

__tests__/cli/__snapshots__/workflows.test.js.snap

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ exports[`list - Non-Interactive Mode Should provide a list of available workflow
2222
"name": "upsert-ossf-scorecard",
2323
"workflow": [Function],
2424
},
25-
{
26-
"description": "Starts a http server that shows all the files and folders in the output directory.",
27-
"name": "show-reports",
28-
"workflow": [Function],
29-
},
3025
{
3126
"description": "Generate the reports for the stored data.",
3227
"name": "generate-reports",

__tests__/cli/workflows.test.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,6 @@ describe('run bulk-import', () => {
165165
test.todo('Should throw an error when the JSON file is not valid due schema validation')
166166
})
167167

168-
describe('run show-reports', () => {
169-
test.todo('Should start a http server that shows all the files and folders in the output directory')
170-
})
171-
172168
describe('run generate-reports', () => {
173169
test.todo('Should generate the reports for the stored data')
174170
})

src/cli/workflows.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ const commandList = [{
2121
name: 'upsert-ossf-scorecard',
2222
description: 'Upsert the OSSF Scorecard scoring by running and checking every repository in the database.',
2323
workflow: upsertOSSFScorecardAnalysis
24-
}, {
25-
name: 'show-reports',
26-
description: 'Starts a http server that shows all the files and folders in the output directory.',
27-
workflow: require('../httpServer')
2824
}, {
2925
name: 'generate-reports',
3026
description: 'Generate the reports for the stored data.',

0 commit comments

Comments
 (0)