30 lines
749 B
YAML
30 lines
749 B
YAML
name: Align v17.6.6 E2E
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/v17.6.6-offer-templates
|
|
paths:
|
|
- .github/workflows/fix-v1766-e2e.yml
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
fix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
- name: Update deterministic icon checks
|
|
run: node .github/scripts/fix-v1766-e2e.mjs
|
|
- name: Commit
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git add tests/app.spec.mjs
|
|
git commit -m "Align v17.6.6 E2E with native menu icon" || exit 0
|
|
git push
|