Unified media preview 3 - URL previews use the previews #18233
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: Shared Component Visual Tests | |
| on: | |
| pull_request: {} | |
| merge_group: | |
| types: [checks_requested] | |
| push: | |
| branches: [develop, master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| permissions: {} # No permissions required | |
| jobs: | |
| testStorybook: | |
| name: "Run Visual Tests" | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| actions: read | |
| issues: read | |
| pull-requests: read | |
| steps: | |
| # Dump the disk usage before we start: this job frequently flakes with "No space left on device" | |
| # so, with the one at the end too, this will let us work out how much disk has been used. | |
| - name: dfbefore | |
| run: df -h && df -i | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| persist-credentials: false | |
| repository: element-hq/element-web | |
| - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7 | |
| with: | |
| cache: "pnpm" | |
| node-version: "lts/*" | |
| - name: Install dependencies | |
| working-directory: packages/shared-components | |
| run: pnpm install --frozen-lockfile | |
| - name: Setup playwright | |
| uses: ./.github/actions/setup-playwright | |
| with: | |
| write-cache: ${{ github.event_name != 'merge_group' }} | |
| - name: Run Visual tests | |
| working-directory: packages/shared-components | |
| run: "pnpm test:storybook --run" | |
| - name: Detect stale screenshots | |
| run: | | |
| if diff -rq __baselines__ __results__ | grep "^Only in __baselines__"; then | |
| exit 1 | |
| fi | |
| working-directory: packages/shared-components/__vis__/linux | |
| - name: Upload received images & diffs | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: received-images | |
| path: packages/shared-components/__vis__/linux | |
| # Dump the disk usage on failure, because this job seems to fail with disk fills sometimes | |
| - name: df | |
| run: df -h && df -i | |
| if: ${{ failure() }} |