Update Playwright screenshots #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Playwright screenshots | |
on: | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Update Playwright screenshots | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: 📦 Install dependencies | |
run: pnpm install | |
- name: 🗑️ Delete existing screenshots | |
run: rm -rf ./playwright/snapshots | |
working-directory: packages/sit-onyx | |
- name: 🔎 Update Playwright screenshots | |
uses: ./.github/templates/playwright | |
with: | |
script: test:components --update-snapshots | |
working-directory: packages/sit-onyx | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: "chore: update Playwright screenshots" | |
title: "chore: update Playwright screenshots" | |
body: This is an auto-generated pull request. All Playwright screenshots have been updated. | |
branch-suffix: short-commit-hash # needed to not override other pull requests created via workflows | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH_NAME: ${{ github.ref_name }} |