fix: replace ls with stat in Verify Chromium step (SC2012)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-23 17:39:20 -07:00
parent 964332a160
commit cc360f1a4b
+2 -1
View File
@@ -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()"