Mask error stack in visual snapshots #5743
Workflow file for this run
This file contains hidden or 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: check-e2e | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| check-e2e: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@v5 | |
| id: playwright-dep-cache | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }} | |
| - name: Install Playwright browsers | |
| if: steps.playwright-dep-cache.outputs.cache-hit != 'true' | |
| run: npx playwright install chromium | |
| - name: Install Radicle binaries | |
| run: | | |
| mkdir -p tests/artifacts; | |
| ./scripts/install-binaries; | |
| - name: Run Playwright tests | |
| run: npm run test:e2e -- --project chromium | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: test-artifacts-${{ runner.os }} | |
| retention-days: 30 | |
| if-no-files-found: "ignore" | |
| path: | | |
| tests/artifacts/**/* |