From fb972bc3597505eb4a9d047ccb90fafa88e0b64a Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 9 Dec 2024 13:46:40 -0600 Subject: [PATCH] CLDR-18174 workaround jstest sandbox see CLDR-17780 for longer term fixes --- .github/workflows/js.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index b3e1ead9337..dd129fba509 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -41,6 +41,7 @@ jobs: - name: Run JS tests # stopgap: fail this if it takes too long timeout-minutes: 10 - run: (cd tools/cldr-apps/js && npm t) + # TODO: See CLDR-17780 work around mocha-headless-chrome issue + run: (cd tools/cldr-apps/js && npm t -- -a no-sandbox -a disable-setuid-sandbox) - name: Run Webpack production build run: (cd tools/cldr-apps/js && npm run build)