From ca8c1f567f26f70713f7f692e95cddd81bf48661 Mon Sep 17 00:00:00 2001 From: Chad Killingsworth Date: Fri, 16 May 2025 15:59:04 -0500 Subject: [PATCH 1/2] Remove colors flag from npm test --- .github/ci_support/test_closure-compiler-npm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ci_support/test_closure-compiler-npm.sh b/.github/ci_support/test_closure-compiler-npm.sh index 57544008df4..b096aacaea4 100755 --- a/.github/ci_support/test_closure-compiler-npm.sh +++ b/.github/ci_support/test_closure-compiler-npm.sh @@ -42,7 +42,7 @@ function main() { # The NPM repo is divided into multiple Yarn workspaces: one for each # variant of the compiler, including the Graal native builds. We only # need to test the java build. - yarn workspace google-closure-compiler run test --java-only --colors + yarn workspace google-closure-compiler run test --color } main "$@" From 4fa8bb4d6b0bdadfd9e2733400c2413ccadace3d Mon Sep 17 00:00:00 2001 From: Chad Killingsworth Date: Sat, 17 May 2025 11:53:36 -0500 Subject: [PATCH 2/2] Add back --java-only flag --- .github/ci_support/test_closure-compiler-npm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ci_support/test_closure-compiler-npm.sh b/.github/ci_support/test_closure-compiler-npm.sh index b096aacaea4..8d94254bd1b 100755 --- a/.github/ci_support/test_closure-compiler-npm.sh +++ b/.github/ci_support/test_closure-compiler-npm.sh @@ -42,7 +42,7 @@ function main() { # The NPM repo is divided into multiple Yarn workspaces: one for each # variant of the compiler, including the Graal native builds. We only # need to test the java build. - yarn workspace google-closure-compiler run test --color + yarn workspace google-closure-compiler run test --color --java-only } main "$@"