测http-server.yaml

This commit is contained in:
严浩
2025-01-14 19:17:23 +08:00
parent 77d84a9788
commit 2168d61884

View File

@@ -12,5 +12,10 @@ jobs:
- name: step1
run: |
set -x
npx http-server -p=4251 ./gitea
mkdir -p gitea
echo '<h1>hello world</h1>' > gitea/index.html
npx http-server -p=4251 ./gitea &
SERVER_PID=$!
sleep 1 # 等待服务器启动
curl -s http://localhost:4251/
kill $SERVER_PID