Skip to content

Commit fa1ee66

Browse files
authored
Debug action.yml
1 parent ce92841 commit fa1ee66

File tree

1 file changed

+6
-3
lines changed
  • .github/actions/Emscripten-Notebook-Tests

1 file changed

+6
-3
lines changed

.github/actions/Emscripten-Notebook-Tests/action.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ runs:
1818
shell: bash -l {0}
1919
run: |
2020
set -e
21-
ps -a
2221
micromamba create -n xeus-lite-host jupyterlite-core=0.6 jupyterlite-xeus -c conda-forge -y
2322
micromamba activate xeus-lite-host
2423
if [[ "${{ matrix.os }}" == "macos"* ]]; then
@@ -83,5 +82,9 @@ runs:
8382
# Jupyter Lite website.
8483
pkill -9 timeout
8584
pkill -9 jupyter-lite
86-
ps -a
87-
85+
echo "All Processes using port 8000"
86+
lsof -i :8000
87+
echo "Killing all processes using port 8000"
88+
kill -9 $(lsof -ti :8000)
89+
echo "All Processes using port 8000"
90+
lsof -i :8000

0 commit comments

Comments
 (0)