31 lines
881 B
YAML
31 lines
881 B
YAML
name: Fix Caterium v17.7.1 E2E suite
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/workflows/fix-v17-7-1-e2e.yml'
|
|
permissions:
|
|
contents: write
|
|
jobs:
|
|
fix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Restore and patch full test suite
|
|
run: python ops/fix_v1771_e2e.py
|
|
- name: Validate static release checks
|
|
run: |
|
|
npm install
|
|
npm run check:deploy
|
|
- name: Commit repair
|
|
run: |
|
|
rm -f .github/workflows/fix-v17-7-1-e2e.yml ops/fix_v1771_e2e.py ops/qa-trigger-v1771.txt
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git add -A
|
|
git commit -m "Fix v17.7.1 E2E compatibility coverage"
|
|
git push
|