From cc360f1a4b4be26b8cbbbcba180b80b3604c2ffe Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Mon, 23 Mar 2026 17:39:20 -0700 Subject: [PATCH] fix: replace ls with stat in Verify Chromium step (SC2012) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/evals.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/evals.yml b/.github/workflows/evals.yml index 9d7397ac..ebf08056 100644 --- a/.github/workflows/evals.yml +++ b/.github/workflows/evals.yml @@ -123,8 +123,9 @@ jobs: - name: Verify Chromium if: matrix.suite.name == 'e2e-browse' run: | + # shellcheck disable=SC2012 echo "whoami=$(whoami) HOME=$HOME TMPDIR=${TMPDIR:-unset}" - ls -la /tmp | head -3 + stat /tmp touch /tmp/.bun-write-test && rm /tmp/.bun-write-test && echo "/tmp writable" bun -e "import {chromium} from 'playwright';const b=await chromium.launch({args:['--no-sandbox']});console.log('Chromium OK');await b.close()"