Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Jain <radical@gmail.com>2022-07-26 06:05:49 +0300
committerGitHub <noreply@github.com>2022-07-26 06:05:49 +0300
commiteecb02807867cad56cd05badddef65e432248b75 (patch)
tree62070d92a5f933e3201b2ff071c25986507e8c74
parent09b963ff86d5d4b52928e420e68932fb19d919f4 (diff)
Remove npm audit call in CI (#72386) (#72813)v7.0.0-preview.7.22375.6release/7.0-preview7
Backport from `main`. (cherry picked from commit f7cba48efcd9cf9eb8440f0dee5c946a1204b7df) Co-authored-by: Larry Ewing <lewing@microsoft.com>
-rw-r--r--src/mono/wasm/wasm.proj1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mono/wasm/wasm.proj b/src/mono/wasm/wasm.proj
index 62ef5f58b45..c8cff69732d 100644
--- a/src/mono/wasm/wasm.proj
+++ b/src/mono/wasm/wasm.proj
@@ -343,7 +343,6 @@
>
<!-- install typescript and rollup -->
<RunWithEmSdkEnv Condition="'$(ContinuousIntegrationBuild)' == 'true'" Command="npm ci" EmSdkPath="$(EMSDK_PATH)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoProjectRoot)wasm/runtime/"/>
- <RunWithEmSdkEnv Condition="'$(ContinuousIntegrationBuild)' == 'true'" Command="npm audit --verbose --registry=https://registry.npmjs.org/" EmSdkPath="$(EMSDK_PATH)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoProjectRoot)wasm/runtime/"/>
<!-- npm install is faster on dev machine as it doesn't wipe node_modules folder -->
<RunWithEmSdkEnv Condition="'$(ContinuousIntegrationBuild)' != 'true'" Command="npm install" EmSdkPath="$(EMSDK_PATH)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoProjectRoot)wasm/runtime/"/>