03 - Update Snapshots #356
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: 03 - Update Snapshots | |
on: | |
workflow_dispatch: | |
inputs: | |
purge_snapshots: | |
description: 'Delete all snapshots before regenerating them' | |
type: boolean | |
default: false | |
jobs: | |
update-snapshots: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.PRIVATE_KEY }} | |
- name: Get GitHub App User ID | |
id: get-user-id | |
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT" | |
env: | |
GH_TOKEN: ${{ steps.app-token.outputs.token }} | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref_name }} | |
fetch-depth: 0 | |
token: ${{ steps.app-token.outputs.token }} | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store | |
restore-keys: | | |
${{ runner.os }}-pnpm-store | |
- name: Install | |
run: pnpm i --no-frozen-lockfile | |
- name: Build | |
run: pnpm -r build | |
- name: Purge existing snapshots | |
if: ${{ github.event.inputs.purge_snapshots == 'true' }} | |
run: rm packages/**/snapshots/**/*.png | |
- name: Display git status (before test-update) | |
run: git status | |
- name: Run test-update in all packages | |
run: pnpm -r --workspace-concurrency=1 test-update | |
- name: Display git status (after test-update) | |
run: git status | |
- name: Commit and push changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update all snapshots | |
file_pattern: 'packages/themes/**/snapshots/* packages/test-tag-name-transformer/snapshots/*' | |
commit_user_name: '${{ steps.app-token.outputs.app-slug }}[bot]' | |
commit_user_email: '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com' |