Capture exact v17.7.1 E2E failures

This commit is contained in:
pavlov346346-source 2026-09-09 02:43:10 +03:00
parent faaf68a32d
commit a4e2595a8a

View File

@ -0,0 +1,30 @@
name: Capture Caterium v17.7.1 E2E failures
on:
push:
branches:
- main
paths:
- '.github/workflows/diag-e2e-v1771-txt.yml'
permissions:
contents: write
jobs:
diagnose:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm install
- run: npx playwright install --with-deps chromium
- name: Capture E2E output
run: npm run test:e2e > ops/e2e-v1771.txt 2>&1 || true
- name: Commit diagnostics
run: |
rm -f .github/workflows/diag-e2e-v1771-txt.yml
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -f ops/e2e-v1771.txt
git add -A
git commit -m "Capture exact v17.7.1 E2E failures"
git push