From a4e2595a8a60c5ae4674302dc98b805bd39331b5 Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Wed, 9 Sep 2026 02:43:10 +0300 Subject: [PATCH] Capture exact v17.7.1 E2E failures --- .github/workflows/diag-e2e-v1771-txt.yml | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/diag-e2e-v1771-txt.yml diff --git a/.github/workflows/diag-e2e-v1771-txt.yml b/.github/workflows/diag-e2e-v1771-txt.yml new file mode 100644 index 0000000..e77c22d --- /dev/null +++ b/.github/workflows/diag-e2e-v1771-txt.yml @@ -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