Skip to content

Update Snapshots

Update Snapshots #15

Workflow file for this run

name: Update Snapshots
on:
workflow_dispatch:
jobs:
update_snapshots:
runs-on: ubuntu-20.04
steps:
- name: Fail if branch is main
if: ${{ github.ref == 'refs/heads/main' }}
run: |
echo "This workflow should not be triggered with workflow_dispatch on main"
exit 1
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Setup E2E Environment
uses: ./.github/actions/setup-e2e-env
- name: Install Templates Dependencies
run: ./scripts/install-deps
- name: Run tests and update Snapshots
run: |
juno dev start --headless &
./scripts/e2e e2e:ci:snapshots
- name: Commit Playwright updated snapshots
uses: EndBug/add-and-commit@v9
if: ${{ github.ref != 'refs/heads/main' }}
with:
add: e2e
default_author: github_actions
message: '🤖 update snapshots'