Bump @sentry/vue to 8.34.0, @sentry/tracing to 7.114.0 and vue-router… #1126
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: Regression tests | |
on: [push] | |
jobs: | |
regression: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install playwright browsers | |
run: pnpm playwright install | |
- name: Run visual regression tests | |
run: pnpm run test:regression | |
- name: Saving diffs 📥 | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: diff | |
path: tests/__image_snapshots__/__diff_output__ | |
retention-days: 14 | |
- name: Saving failure 📥 | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: received | |
path: tests/__image_snapshots__/__received_output__ | |
retention-days: 14 |