We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80b786d commit dbf3038Copy full SHA for dbf3038
src/index.ts
@@ -1,7 +1,7 @@
1
-import * as core from '@actions/core'
2
-import * as glob from '@actions/glob'
3
-import * as fs from 'fs-extra'
4
-import { spawn } from 'child_process'
+import * as core from '@actions/core';
+import * as glob from '@actions/glob';
+import { spawn } from 'child_process';
+import * as fs from 'fs-extra';
5
6
var TEST_PIDS: number[] = [];
7
@@ -98,7 +98,7 @@ export async function run(): Promise<void> {
98
function generateCommand(path: string): string {
99
const args = [
100
// `--address=""`, // Disable the REST API. THIS DOESN'T WORK???? TODO: Investigate
101
- '--quiet',
+ // '--quiet',
102
...(flags ? flags.split(' ') : []),
103
]
104
if (isCloud && cloudRunLocally) {
0 commit comments