From f8fc03b9af9b75e86985f6e98a57f935f1edcde9 Mon Sep 17 00:00:00 2001 From: zhi Date: Tue, 30 Jun 2026 20:59:25 +0800 Subject: [PATCH] Add Gitea Actions smoke workflow --- .gitea/workflows/smoke.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/smoke.yml diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 0000000..d530378 --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,20 @@ +name: Runner Smoke + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + smoke: + runs-on: ubuntu-latest + steps: + - name: Check job container + run: | + echo "runner smoke ok" + pwd + uname -a + node --version + npm --version + git --version