mirror of https://github.com/garrytan/gstack.git
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:
parent
964332a160
commit
cc360f1a4b
|
|
@ -123,8 +123,9 @@ jobs:
|
||||||
- name: Verify Chromium
|
- name: Verify Chromium
|
||||||
if: matrix.suite.name == 'e2e-browse'
|
if: matrix.suite.name == 'e2e-browse'
|
||||||
run: |
|
run: |
|
||||||
|
# shellcheck disable=SC2012
|
||||||
echo "whoami=$(whoami) HOME=$HOME TMPDIR=${TMPDIR:-unset}"
|
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"
|
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()"
|
bun -e "import {chromium} from 'playwright';const b=await chromium.launch({args:['--no-sandbox']});console.log('Chromium OK');await b.close()"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue