ci: add runner smoke test
runner-smoke / smoke (push) Failing after 5s

This commit is contained in:
Ping
2026-09-09 15:37:54 +02:00
parent df0e57c9fe
commit 2fa39d0a6c
+18
View File
@@ -0,0 +1,18 @@
name: runner-smoke
on: [push]
jobs:
smoke:
runs-on: windows-latest
steps:
- name: Verify host toolchain
shell: bash
run: |
echo "runner.os = ${{ runner.os }}"
echo "host = $(hostname)"
git --version
node --version
npm --version
cargo --version
rustc --version
echo "SMOKE_OK"