setup-xvfb icon indicating copy to clipboard operation
setup-xvfb copied to clipboard

Multiple commands

Open zerothi opened this issue 7 months ago • 0 comments

I tried to do:

run: npm install ... ; bash script.sh

to no avail,

I also did:

run: |
   npm install
   bash script.sh

which also failed.

The latter returned this:

Command: npm install -g terminalizer
/usr/bin/xvfb-run --auto-servernum npm install -g terminalizer
npm WARN deprecated [email protected]: this library is no longer supported
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142

added 260 packages in 9s

32 packages are looking for funding
  run `npm fund` for details
/usr/bin/bash /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh
/usr/bin/bash: /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh: No such file or directory
Command: cd docs/os/Animations
/usr/bin/xvfb-run --auto-servernum cd docs/os/Animations
/usr/bin/bash /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh
/usr/bin/bash: /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh: No such file or directory
Command: bash create.sh
/usr/bin/xvfb-run --auto-servernum bash create.sh
bash: create.sh: No such file or directory
/usr/bin/bash /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh
/usr/bin/bash: /home/runner/work/_actions/coactions/setup-xvfb/v1/dist/cleanup.sh: No such file or directory
Error: The process '/usr/bin/xvfb-run' failed with exit code 127

which I don't know if it is my problem or not? It looks weird though.

zerothi avatar Nov 28 '23 13:11 zerothi