ci-diag: env dump on gitea, surface tracker on github
Net Diag / diag (push) Successful in 0s

This commit is contained in:
Sucukdeluxe
2026-08-14 15:19:47 +02:00
parent d32777b1bd
commit 629ff09e73
3 changed files with 59 additions and 226 deletions
+14 -17
View File
@@ -4,23 +4,20 @@ on: push
jobs:
diag:
runs-on: windows-latest
timeout-minutes: 20
timeout-minutes: 10
env:
CI: 'true'
steps:
- uses: actions/checkout@v4
timeout-minutes: 10
- uses: actions/setup-node@v4
timeout-minutes: 10
with:
node-version: '24.11.1'
cache: npm
- name: Clean install
run: npm ci
timeout-minutes: 10
- name: Build
run: npm run build
timeout-minutes: 10
- name: Repair repro with full diagnostics
run: node tvm-diag-repair.js
timeout-minutes: 10
- name: Env dump
run: |
"CI=$env:CI"
"GITHUB_ACTIONS=$env:GITHUB_ACTIONS"
"GITEA_ACTIONS=$env:GITEA_ACTIONS"
"GITHUB_SERVER_URL=$env:GITHUB_SERVER_URL"
"GITHUB_RUN_ID=$env:GITHUB_RUN_ID"
"RUNNER_OS=$env:RUNNER_OS"
"RUNNER_TEMP=$env:RUNNER_TEMP"
"RUNNER_ENVIRONMENT=$env:RUNNER_ENVIRONMENT"
"RUNNER_NAME=$env:RUNNER_NAME"
Get-ChildItem env: | Where-Object { $_.Name -match '^(GITHUB|GITEA|RUNNER|ACTIONS)' } | ForEach-Object { "$($_.Name)=$($_.Value)" }
exit 0