From e3cddc582f06543a69129e08324e3026747662ce Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Mon, 11 Dec 2023 08:29:38 -0500 Subject: [PATCH] Disable Next.js telemetry in CI testing of local dev (#47513) --- .github/workflows/local-dev.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/local-dev.yml b/.github/workflows/local-dev.yml index e57db89b7e..fb5f305047 100644 --- a/.github/workflows/local-dev.yml +++ b/.github/workflows/local-dev.yml @@ -28,6 +28,9 @@ jobs: # Note that we don't check out docs-early-access, Elasticsearch, # or any remote translations. Nothing fancy here! + - name: Disable Next.js telemetry + run: npx next telemetry disable + - name: Start server in the background run: npm start > /tmp/stdout.log 2> /tmp/stderr.log &