27 lines
588 B
YAML
27 lines
588 B
YAML
name: Net Diag
|
|
on: push
|
|
|
|
jobs:
|
|
diag:
|
|
runs-on: windows-latest
|
|
timeout-minutes: 20
|
|
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
|