添加 .gitea/workflows/l1-smoke.yaml

This commit is contained in:
ztm
2026-07-08 08:59:54 +00:00
commit 793d8f0312
+13
View File
@@ -0,0 +1,13 @@
name: l1-smoke
on: [push]
jobs:
smoke:
runs-on: docker # 匹配 docker 标签 -> 默认镜像 node:20-bookworm
steps:
- name: 基础信息
run: |
echo "hello from runner"
uname -a
cat /etc/os-release | head -2
- name: 环境变量检查
run: env | sort | head -30