feat: migrate app from Capacitor/Tauri to PWA #5
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
update-screenshots: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.45.3-jammy | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright browsers | |
run: npx playwright install --with-deps | |
- name: Update screenshots | |
run: npx playwright test screenshots.spec.ts --reporter=html --update-snapshots | |
- name: Upload Screenshots | |
uses: actions/upload-artifact@v4 | |
with: | |
name: snapshots | |
path: tests/screenshots.spec.ts-snapshots | |
retention-days: 1 | |
- name: Commit changes | |
run: | | |
git config --local user.email "playwright[bot]@users.noreply.github.com" | |
git config --local user.name "playwright[bot]" | |
git add -A | |
git commit -m "Update Playwright screenshots" -a || echo "No changes to commit" | |
git push | |
- name: Upload HTML report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: html-report | |
path: playwright-report | |
retention-days: 1 |