Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/visual-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: pnpm exec playwright install --with-deps
- name: Capture Screenshots
run: pnpm run test
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: baseline
path: build/screenshots
Expand All @@ -43,7 +43,7 @@ jobs:
- run: pnpm exec playwright install --with-deps
- name: Capture Screenshots
run: pnpm run test
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: candidate
path: build/screenshots
Expand All @@ -60,7 +60,7 @@ jobs:
node-version: 24
- name: Create Visual Diff
run: npx visual-differ baseline candidate results/visual-diff-${{ github.event.pull_request.number }}
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: always()
with:
name: visual-diff-${{ github.event.pull_request.number }}
Expand Down
Loading