File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
deno-version : v1.41
34
34
- name : Publish package
35
- run : deno publish --allow-slow-types
35
+ run : echo publish # deno publish --allow-slow-types
36
36
working-directory : megalinter
Original file line number Diff line number Diff line change @@ -31,12 +31,19 @@ export async function lint(
31
31
. from ( `oxsecurity/megalinter:${ version } ` )
32
32
. withDirectory ( "/app" , context )
33
33
. withEnvVariable ( "DEFAULT_WORKSPACE" , "/app" )
34
- . withEnvVariable ( "REPORT_OUTPUT_FOLDER" , "megalinter-reports" )
34
+ . withEnvVariable ( "REPORT_OUTPUT_FOLDER" , "/ megalinter-reports" )
35
35
. withEnvVariable ( "SARIF_REPORTER" , "true" )
36
36
. withWorkdir ( "/app" ) ;
37
37
38
38
await ctr . stdout ( ) ;
39
- return ctr . directory ( "./megalinter-reports" ) . id ( ) ;
39
+
40
+ console . log ( await ctr . directory ( "/" ) . entries ( ) ) ;
41
+
42
+ console . log ( await ctr . directory ( "/app" ) . entries ( ) ) ;
43
+
44
+ console . log ( await ctr . directory ( "/megalinter-reports" ) . entries ( ) ) ;
45
+
46
+ return ctr . directory ( "/megalinter-reports" ) . id ( ) ;
40
47
}
41
48
export type JobExec = (
42
49
src : string ,
You can’t perform that action at this time.
0 commit comments